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

iOS 隐藏Tabbar

时间:2016-12-12 20:06:51      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:testing   ted   esb   界面   hidden   security   nbsp   button   cli   

两种方法用来隐藏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

标签:testing   ted   esb   界面   hidden   security   nbsp   button   cli   

原文地址:http://www.cnblogs.com/oshushu/p/6165315.html

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