iOS开发随笔~

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。

上一篇 下一篇

猜你喜欢

热点阅读