UITabbarController
+ UINavigationController
的组合很经常使用。通常是UITabbarController
作为window
的根视图控制器,然后其他VC使用UINavigationController
因此,在其他VC进行push操作的时候,常常需要将tabbar隐藏起来,在pop回去的时候重现显示。这个需求大多通过UIViewController
的hidesBottomBarWhenPushed
的属性来设置。设置为false
的时候,跳转到下一个vc时就会将tabbar隐藏起来,但是在UINavigationController
的层次结构中,你将会发现,pop回来的时候,tabbar也没有出现。
在SO上找到下面这个答案
hidesBottomBarWhenPushed = NO not working?
UINavigationController
中,如果设置了其中一个VC的话,UINavigationController
也会将层次结构中其他VC也一并设置上,所以哪怕将hidesBottomBarWhenPushed
设置为false
也没有效果
不过该答案下面提供的解决代码貌似使用不了,我自己改了一下他的代码:
经指正,hidesBottomBarWhenPushed
是放在要push的vc上,而不是放在当前的vc。没注意这个属性中的When.
- swift
/*
override var hidesBottomBarWhenPushed: Bool {
get {
return navigationController?.topViewController != self
}
set {
super.hidesBottomBarWhenPushed = newValue
}
}
*/
复制代码
- oc
/*
- (BOOL) hidesBottomBarWhenPushed {
return (self.navigationController.topViewController != self);
}
*/
复制代码