iOS禁用右滑返回的两种方法

时间:2022-09-18 23:15:15

本文实例为大家分享了iOS禁用右滑返回的具体代码,供大家参考,具体内容如下

方式一:

前提:如果使用的自定义UINavigationController基类,请不要在此基类里写相关的手势操作方法。

代码如下:

?
1
2
3
4
5
6
7
8
9
-(void)viewDidAppear:(BOOL)animated{
  if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
    self.navigationController.interactivePopGestureRecognizer.enabled = NO;
  }
}
   
-(void)viewWillDisappear:(BOOL)animated{
  self.navigationController.interactivePopGestureRecognizer.enabled = YES;
}

方式二:

流程:先设置代理---->重写手势操作方法

?
1
2
3
4
5
6
7
8
-(void)viewDidAppear:(BOOL)animated{
  self.navigationController.interactivePopGestureRecognizer.delegate = self;
}
   
- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer
                   *)gestureRecognizer{
  return NO; //YES:允许右滑返回 NO:禁止右滑返回
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/IOT_LI/article/details/51781312