iTofu/LCNavigationController

无法禁止侧滑返回

Opened this issue · 0 comments

某些页面需要禁止侧滑返回,但是使用这个库push进来后就无法禁止侧滑返回,我采用的禁止侧滑返回的代码为:
id traget = self.navigationController.interactivePopGestureRecognizer.delegate;
UIPanGestureRecognizer * pan = [[UIPanGestureRecognizer alloc] initWithTarget:traget action:nil];
[self.view addGestureRecognizer:pan];