iOS隐藏tabBar的方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS隐藏tabBar的方法相关的知识,希望对你有一定的参考价值。

两种方法用来隐藏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的方法的主要内容,如果未能解决你的问题,请参考以下文章

ios中解决自定义tabbar跳转隐藏问题的方法

iOS 隐藏Tabbar

IOS 隐藏tabBar

iOS--隐藏和显示TabBar的方法

iOS 自定义tab bar 怎么隐藏

iOS进入界面隐藏下方tabbar等bar