触摸屏幕上的任何位置,用户应该转到iphone应用程序中的下一个视图? 我们怎样才能实现这个目标?
答案 0 :(得分:1)
当然可以使用这种触摸方法
- (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
{
}
}
祝你好运!
答案 1 :(得分:0)
阅读UIResponder Class Reference了解更多详情
现在你可以实现
了你的viewController类中的
- (void)touchesBegan:(NSSet *)触及withEvent:(UIEvent *)事件
方法,并可能通过推送NavigationController来加载otherViewController。