美文网首页
禁止滑动手势返回前一页

禁止滑动手势返回前一页

作者: 精神薇 | 来源:发表于2018-02-08 17:54 被阅读0次
    - (void)viewDidAppear:(BOOL)animated{
            [super viewDidAppear:animated];
            if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
                self.navigationController.interactivePopGestureRecognizer.enabled = NO;
            }
        
    }
    - (void)viewWillDisappear:(BOOL)animated{
            [super viewWillDisappear:animated];
            if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
                self.navigationController.interactivePopGestureRecognizer.enabled = YES;
            }
    }
    

    相关文章

      网友评论

          本文标题:禁止滑动手势返回前一页

          本文链接:https://www.haomeiwen.com/subject/urottftx.html