iOS单个页面禁止系统侧滑返回上个页面
2018-12-19 本文已影响54人
世玉茹花
如果想禁止某个单页面侧滑返回手势,
以前都是
self.navigationController.interactivePopGestureRecognizer.enabled = YES;
现在,加这个可能没用。。。
想了个简单办法:
直接页面加个手势就OK:
id traget = self.navigationController.interactivePopGestureRecognizer.delegate;
UIPanGestureRecognizer * pan = [[UIPanGestureRecognizer alloc]initWithTarget:traget action:nil];
[self.view addGestureRecognizer:pan];
直接加在viewdidload就OK。