我正在开发一个应用程序,我想UIViewControllers
用UISwipeGestureRecognizer
. 一切正常,但有一件事我找不到解决方案。
我添加UIGestureRecognizers
这样的
- (void)viewDidLoad {
[super viewDidLoad];
UISwipeGestureRecognizer *swipeLeft = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeLeft)];
[swipeLeft setDirection:UISwipeGestureRecognizerDirectionLeft];
[self.view addGestureRecognizer:swipeLeft];
UISwipeGestureRecognizer *swipeRight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeRight)];
[swipeRight setDirection:UISwipeGestureRecognizerDirectionRight];
[self.view addGestureRecognizer:swipeRight];
}
现在我想知道是否self.view
可以排除可以滑动到不同视图的一部分。我想围绕一个UISwitch
.
有人可以帮帮我吗?
此致,
卢卡斯去