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

IOS 隐藏tabBar

时间:2017-04-27 15:31:43      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:esb   void   app   tab   hidden   hand   oid   eww   mba   

两种方法用来隐藏tabBar

1.在本页面隐藏

#pragma mark - 隐藏tabBar

- (void)viewWillAppear:(BOOL)animated{

    self.tabBarController.tabBar.hidden = YES;

}

- (void)viewWillDisappear:(BOOL)animated{

  self.tabBarController.tabBar.hidden = NO;

}

2.再跳界面之前设置跳转后隐藏tabBar

#pragma mark - 隐藏tabBar

- (void)handleClickTestButtonAction:(UIButton *)sender{

    SecurityTestingViewController *test = [[SecurityTestingViewController alloc]init];

    self.hidesBottomBarWhenPushed = YES;

    [self.navigationController pushViewController:test animated:NO];

}

IOS 隐藏tabBar

标签:esb   void   app   tab   hidden   hand   oid   eww   mba   

原文地址:http://www.cnblogs.com/dujiahong/p/6774255.html

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