欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

UITabbarController + UINavigationController隐藏tabbar

程序员文章站 2022-04-01 12:43:04
...

UITabbarController + UINavigationController 的组合很经常使用。通常是UITabbarController作为window的根视图控制器,然后其他VC使用UINavigationController

因此,在其他VC进行push操作的时候,常常需要将tabbar隐藏起来,在pop回去的时候重现显示。这个需求大多通过UIViewControllerhidesBottomBarWhenPushed的属性来设置。设置为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);
}
*/
复制代码

转载于:https://juejin.im/post/5a30e0586fb9a045104a7be2