码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发之--单个页面禁止右滑返回操作

时间:2019-03-05 13:58:42      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:div   ios开发   pop   sele   span   返回   class   col   ati   

禁止右滑:

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

        self.navigationController.interactivePopGestureRecognizer.enabled = NO;

    }

允许右滑:

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

        self.navigationController.interactivePopGestureRecognizer.enabled = YES;

    }

 

仅做记录!

iOS开发之--单个页面禁止右滑返回操作

标签:div   ios开发   pop   sele   span   返回   class   col   ati   

原文地址:https://www.cnblogs.com/hero11223/p/10476215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!