ios禁止页面左划返回

来源:互联网 发布:淘宝微淘一天能发几条 编辑:程序博客网 时间:2024/04/29 23:44

方法一:id traget = self.navigationController.interactivePopGestureRecognizer.delegate;
UIPanGestureRecognizer * pan = [[UIPanGestureRecognizer alloc]initWithTarget:traget action:nil];
[self.view addGestureRecognizer:pan];

方法二://在viewdidappear里面 禁用返回手势
if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
self.navigationController.interactivePopGestureRecognizer.enabled = NO;
}