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可以隐藏应用吗

iOS隐藏状态栏

iOS-隐藏Navigationbar导航栏无缝圆滑的隐藏

iOS_隐藏顶部状态栏

iOS 隐藏Tabbar