美文网首页
阻止系统左滑返回

阻止系统左滑返回

作者: YN吾爱 | 来源:发表于2022-03-26 11:24 被阅读0次

    //左滑右滑禁用

    - (void)viewDidAppear:(BOOL)animated

    {

        [superviewDidAppear:animated];

        // 禁用侧滑返回手势

        if([self.navigationControllerrespondsToSelector:@selector(interactivePopGestureRecognizer)]) {

            //这里对添加到右滑视图上的所有手势禁用

            for (UIGestureRecognizer *popGesture in self.navigationController.interactivePopGestureRecognizer.view.gestureRecognizers) {

                popGesture.enabled=NO;

            }

        }

    }

    - (void)viewWillDisappear:(BOOL)animated

    {

        [superviewWillDisappear:animated];

        // 启用侧滑返回手势

        if([self.navigationControllerrespondsToSelector:@selector(interactivePopGestureRecognizer)]) {

            //这里对添加到右滑视图上的所有手势启用

            for (UIGestureRecognizer *popGesture in self.navigationController.interactivePopGestureRecognizer.view.gestureRecognizers) {

                popGesture.enabled=YES;

            }

        }

    }

    相关文章

      网友评论

          本文标题:阻止系统左滑返回

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