IOS侧滑返回和滑动视图的之间的冲突
1. interactivePopGestureRecognizer 属性介绍
我们都知道苹果一直尽力在人机交互中做到极至, 在IOS7中,增加了一个小小的功能,也就是这个API:self.navigationController.interactivePopGestureRecognizer.enabled = YES
导航控制器会在它的视图上安装这个手势识别器,并用它从导航堆栈中弹出最顶层的视图控制器。您可以使用此属性检索手势识别器,并将其绑定到用户界面中其他手势识别器的行为。当把你的手势识别器绑在一起时,确保它们同时识别手势,以确保你的手势识别器有机会处理这个事件
该API的功能就是在NavigationController
堆栈内的UIViewController
可以支持右滑手势
,也就是不用点击左上角的返回按钮,只要轻轻的在左边一滑,屏幕就会返回。随着IOS的屏幕的增大,这个小功能也越来越重要。
这个功能是好,但是经常我们会有需求定制返回按钮,如果手动定制了返回按钮,这个功能将会失效,也就是自定义了navigationItem
的leftBarButtonItem
,那么这个手势就会失效。 现在很多APP都是使用自定义的导航栏, 把系统的导航栏隐藏掉了, 即使隐藏掉系统的导航栏, 只要没有自定义导航栏左侧按钮,那么该手势的滑动效果是不会小时的
- 解决方案:
重新设置手势的delegate
@interface TestVViewController ()<UIGestureRecognizerDelegate>
@end
@implementation TestVViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor orangeColor];
UIButton *leftButton = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 50, 50)];
[leftButton setBackgroundColor:[UIColor redColor]];
[leftButton setTitle:@"返回" forState:UIControlStateNormal];
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:leftButton];
//如果没有这句代码,那么右滑是不会返回上一级的
self.navigationController.interactivePopGestureRecognizer.delegate = self;
}
2右滑手势和滑动视图的冲突
滑动视图如: UIScrollView、UITableView、UICollectionView,当这些视图覆盖在ViewController上的时候, 右滑手势返回上一级,是可以起作用。
- 但是如下情况则不起作用:
- ViewController
- UITbaleView
- UITableViewCell嵌套UIScrollView/UICollectionView
- UITbaleView
- ViewController
在上述结构下, 在UIScrollView/UICollectionView
范围内使用右滑手势根本作用, 但是 UIScrollView/UICollectionView
范围之外,又在UITbaleView
的范围内, 右滑手势其作用, 证明如果滑动手势嵌套多层,可能手势会有冲突导致右滑返回手势不起作用
解决方案:
如果嵌套多层, 那么每一层都需要使用这种方法设置一下, 不然不起作用。
首先获取当前UINavigationController
的interactivePopGestureRecognizer
手势对象, 如果存在则 调用方法- (void)requireGestureRecognizerToFail:(UIGestureRecognizer *)otherGestureRecognizer;
来解决问题。
// create a relationship with another gesture recognizer that will prevent this gesture's actions from being called until otherGestureRecognizer transitions to UIGestureRecognizerStateFailed
// if otherGestureRecognizer transitions to UIGestureRecognizerStateRecognized or UIGestureRecognizerStateBegan then this recognizer will instead transition to UIGestureRecognizerStateFailed
// example usage: a single tap may require a double tap to fail
- (void)requireGestureRecognizerToFail:(UIGestureRecognizer *)otherGestureRecognizer;
创建一个与另一个手势识别器的关系,该关系将防止这个手势的动作被调用,直到otherGestureRecognizer转换到UIGestureRecognizerStateFailed
如果otherGestureRecognizer转换到uigesturerecognizerstaterrecognize或UIGestureRecognizerStateBegan,那么这个识别器将代替转换到UIGestureRecognizerStateFailed
示例用法:单个点击可能需要双点击失败
简单的说是当两个手势产生冲突时, 可以通过这个方法设置手势的优先级,让你需要触发的手势优先触发。该方法中第一个参数是需要失效的手势(也就是调用者),第二个是生效的手势(otherGestureRecognizer
)。