我正在使用 XCode 为 iOS 平台开发 Cocoa 触摸应用程序,但无法找到如何实现滑动手势以允许用户向左或向右滑动手指以更改为新的ViewController
(nib/xib 文件) . 我已经swapView IBAction
使用按钮和模态转换完成了,并且我已经阅读了有关 Apple 的信息TouchGestureRecognizer
,但我不知道如何实现允许视图更改的滑动操作。
我不想使用滚动视图,因为我有几十个视图控制器,我希望用户能够滑动浏览。
这是一个例子:
第一个视图 Controller.xib:SwipeRight- 转到第二个视图 Controller.xib
第二个视图 Controller.xib:
SwipeLeft- 转到第一个视图 Controller.xib
SwipeRight- 转到第三个视图 Controller.xib
等等等等
我以前没有使用过 UISwipe/Touch Gestures,但我使用了一种IBAction
方法来使用带有模态转换的按钮切换视图(见下文):
-(IBAction)swapViews; {
SecondViewController *second2 =[[SecondViewController alloc initWithNibName:@"SecondViewController" bundle:nil];
second2.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:second2 animated:YES];
[second2 release];
}
是否使用滑动来执行格式不同的类似方法?如果是这样,我该如何整理并格式化它。
谢谢你
编辑 - 根据对问题的评论回答
把它放在你的 viewDidLoad
UISwipeGestureRecognizer *swipeRecognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeLeftDetected:)];
swipeRecognizer.direction = UISwipeGestureRecognizerDirectionLeft;
[self.view addGestureRecognizer:swipeRecognizer];
[swipeRecognizer release];
然后添加一个选择器,将以下代码粘贴到您的主...
- (IBAction)swipeLeftDetected:(UIGestureRecognizer *)sender {
NC2ViewController *second2 =[[NC2ViewController alloc] initWithNibName:@"NC2ViewController" bundle:nil];
second2.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:second2 animated:YES];
[second2 release];
}
然后只需确保导入您正在交换使用的 otherViewController
#import "SecondViewController"
在主文件的顶部。希望这可以帮助。
结束编辑