美文网首页
iOS开启与关闭侧滑返回手势

iOS开启与关闭侧滑返回手势

作者: 生命不止运动不息 | 来源:发表于2019-08-15 14:21 被阅读0次

    开启与关闭某ViewController 的侧滑返回手势,注意开启时,一定在viewWillDisappear中去设置enable为yes ,因为在viewDidDisAppear中,该视图的手势已经被移除了 ,设置会失效

    - (void)viewWillDisappear:(BOOL)animated
    {
        [super viewWillDisappear:animated];
        // 开启返回手势
        if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
            self.navigationController.interactivePopGestureRecognizer.enabled = YES;
        }
    }
    
    - (void)viewDidAppear:(BOOL)animated{
        [super viewDidAppear:animated];
    
        //关闭左滑返回
        if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)])
            self.navigationController.interactivePopGestureRecognizer.enabled = NO;
    }
    
    

    相关文章

      网友评论

          本文标题:iOS开启与关闭侧滑返回手势

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