首先先说说这个卡死的bug是如何触发的;
Navigation 是一个由一系列Controller组成的栈,栈的原理是先进后出;举个例子:一摞书放在地上,如果你想要拿出最后一本,就要先把上面的书先拿掉;
Navigation同样,假如这个栈中有多个Controller,
侧滑手势interactivePopGestureRecognizer会将最上面的一个Controller移出栈并销毁页面,
问题就在这里,如果这个Navigation的栈中只有一个Controller,通过侧滑手势移除后,栈中就没有了这个Controller,才导致了页面的卡死;
知道了这个导致这个问题的原因后,再想要解决这个问题就很简单,我们只需要找到侧滑手势interactivePopGestureRecognizer监听事件,保证Navigation栈中至少有一个Controller;
首先你的NavigationController要有个父类我这里命名为BaseNavigationViewController,在父类中加要用到的代理
@interface BaseNavigationViewController () <UINavigationControllerDelegate,UIGestureRecognizerDelegate>
@end
设置代理
- (void)viewDidLoad {
[super viewDidLoad];
__weak BaseNavigationViewController *weakSelf = self;
if([self respondsToSelector:@selector(interactivePopGestureRecognizer)])
{
self.interactivePopGestureRecognizer.delegate = weakSelf;
self.delegate= weakSelf;
}
}
接着重写NavigationControllerDelegate中展示页面的方法
- (void)navigationController:(UINavigationController*)navigationController
didShowViewController:(UIViewController*)viewController
animated:(BOOL)animate
{
NSArray* ctrlArray = navigationController.viewControllers;
if(ctrlArray.count>1) {
if([self respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
self.interactivePopGestureRecognizer.enabled = YES;
}
}else{
if([self respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
self.interactivePopGestureRecognizer.enabled = NO;
}
}
}
只要保证Navigation栈中至少有一个Controller即可
到这里问题就已经解决了