Touching anywhere on screen the user开发者_如何学编程 should go to the next view in iphone application? How can we implement this?
Sure you can Make use of this method of touches
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    //Get all the touches.
    NSSet *allTouches = [event allTouches];
    //Number of touches on the screen
    if([allTouches count] > 0)
    {
//Navigate to next screen here likewise you generally do
    }
else
{
}
}
Good Luck!
Read UIResponder Class Reference for more details
For now you can implement the
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
method in your viewController class and load the otherViewController possibly by pushing over NavigationController.
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论