iOS开发知识小集

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];
上一篇下一篇

猜你喜欢

热点阅读