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

iOS隐藏tabBar的方法

时间:2016-02-22 15:53:34      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://www.cnblogs.com/love-nana/p/5206955.html

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