首页 > 其他 > 详细

使用系统自带的TabBar的tabBarController,切换界面时,显示/隐藏tabBar

时间:2015-03-27 19:59:35      阅读:346      评论:0      收藏:0      [点我收藏+]

控制器有个hidesBottomBarWhenPushed属性。官方的定义是:// If YES, then when this view controller is pushed into a controller hierarchy with a bottom bar (like a tab bar), the bottom bar will slide out. Default is NO.  即,当控制器被push进一个控制器之后,底部条(比如tabBar)会滑出。默认为NO。

现在假设一种情况,tabBarController上放着四个导航控制器,那么要想实现push进一个新的控制器的时候,将tabBarController的tabBar隐藏,只要设置hidesBottomBarWhenPushed = YES;那如果想要隐藏呢?有的人可能会这么做:在viewWillApper里面加入下面的代码:

if (self.navigationController.viewControllers.count == 1) {

        self.tabBarController.tabBar.hidden = NO;

   }

这样做,在第一遍返回到tabBarController上时,是没问题的。但是当第二次再push进入一个新的控制器时,你会发现,hidesBottomBarWhenPushed根本没生效,怎么解决呢?

将viewWillAppear里面的代码更换成:

    if (self.navigationController.viewControllers.count > 1) {

        self.tabBarController.tabBar.hidden = YES;

    }else {

        self.tabBarController.tabBar.hidden = NO;

    }

这时就完美的解决了问题。

这个时候,也有人可能会问:是不是只要在viewWillAppear里面加入那些代码就可以,不用设置hidesBottomBarWhenPushed属性为YES。那么你只要试一下,你就会知道。。技术分享


使用系统自带的TabBar的tabBarController,切换界面时,显示/隐藏tabBar

原文:http://blog.csdn.net/oik_ios/article/details/44680477

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!