码迷,mamicode.com
首页 > 移动开发 > 详细

iOS push隐藏tabbar

时间:2015-06-30 18:12:34      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

当一个UITabbarController管理多个UINavigationController的时候,我们又从这每一个UINavigationController中push一个ViewController的时候,如果不作处理,就会出现推出来的ViewController同样会显示TabBar,怎么样去除呢,很简单,方式如下:

    ViewController *controller = [[ViewController alloc]init];

    [controller setHidesBottomBarWhenPushed:YES];//加上这句就可以把推出的ViewController隐藏Tabbar

    [self.navigationController pushViewController:controller animated:YES];

iOS push隐藏tabbar

标签:

原文地址:http://www.cnblogs.com/tongyuling/p/4611120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!