码迷,mamicode.com
首页 > 其他好文 > 详细

跳转隐藏UITabBar

时间:2015-01-09 17:12:49      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

 

   
//方法一
在跳转的事件里面写

   UIViewController *viewController = [[UIViewController alloc] init];

    viewController.hidesBottomBarWhenPushed = YES;

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

 

//方法2

    self.tabBar.hidden = YES;
    for (UIView *view in self.view.subviews) {
        if (![view isKindOfClass:[UITabBar class]]) {
            view.frame = self.view.bounds;
            [view setBackgroundColor:[UIColor clearColor]];
        }
    }

跳转隐藏UITabBar

标签:

原文地址:http://www.cnblogs.com/allanliu/p/4213508.html

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