IOS开发笔记之禁用手势滑动返回功能的示例
程序员文章站
2023-12-18 15:26:22
在ios7以后,苹果推出了手势滑动返回功能,也就是从屏幕左侧向右滑动可依返回上一个界面。这项功能在大多数情况下方便了用户的使用,但是有时候,我们并不需要手势返回功能,比如某...
在ios7以后,苹果推出了手势滑动返回功能,也就是从屏幕左侧向右滑动可依返回上一个界面。这项功能在大多数情况下方便了用户的使用,但是有时候,我们并不需要手势返回功能,比如某个页面加入了左右滑动翻页功能,用户在使用的时候很容易就返回到上一级界面了。
禁用滑动返回手势需要在改界面的viewcontroller中添加如下代码:
- (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; } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。