ios禁止左划返回手势
2018-01-23 本文已影响116人
frola_
用到UIGestureRecognizerDelegate代理方法
直接加到viewDidLoad
id traget = self.navigationController.interactivePopGestureRecognizer.delegate;
UIPanGestureRecognizer * pan = [[UIPanGestureRecognizer alloc]initWithTarget:traget action:nil];
[self.view addGestureRecognizer:pan];