关于iOS在项目中跳转两层以上页面执行popToRootViewControllerAnimated方法时,发现会造成底部tabbar隐藏。
解决办法:
重写RootNavigationController的popToRootViewControllerAnimated方法
、、、-(NSArray<__kindof UIViewController>)popToRootViewControllerAnimated:(BOOL)animated{
if(self.viewControllers.count>1){
self.topViewController.hidesBottomBarWhenPushed=NO;
}
return [superpopToRootViewControllerAnimated:animated];
}
网友评论