- iOS默认开启侧滑返回,在一些页面(手势解锁页面)需要将侧滑进行关闭,为了不对原本的页面产生影响,需要在页面消失时将侧滑打开。
- (void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
self.navigationController.interactivePopGestureRecognizer.enabled = NO;
}
}
- (void)viewWillDisappear:(BOOL)animated{
[super viewWillDisappear:animated];
if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
self.navigationController.interactivePopGestureRecognizer.enabled = YES;
}
}