博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS如何隐藏各种bar
阅读量:5058 次
发布时间:2019-06-12

本文共 2683 字,大约阅读时间需要 8 分钟。

状态条StatusBar

1     [UIApplication sharedApplication].statusBarHidden = YES;

导航条NavigationBar

1     [self.navigationController setNavigationBarHidden:YES];

TabBar

方法1

1     [self.tabBarController.tabBar setHidden:YES];

这个方法有问题,虽然tabBar被隐藏了,但是那片区域变成了一片空白,无法被其他视图使用。

方法2

对于navigationController+tabBarController的结构,可以在push下一级的childController之前将childController的hidesBottomBarWhenPushed属性设为YES。

比如,可以在childController的初始化方法中做这件事,代码如下:

1 // The designated initializer.  Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.  2  3 - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
4 self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; 5 if (self) {
6 // Custom initialization. 7 self.hidesBottomBarWhenPushed = YES; 8 } 9 return self; 10 }

方法3

http://www.azumi.cc/thread-539502-1-1.html

1 - (void)makeTabBarHidden:(BOOL)hide  2 {
3 if ( [self.tabBarController.view.subviews count] < 2 ) 4 {
5 return; 6 } 7 UIView *contentView; 8 9 if ( [[self.tabBarController.view.subviews objectAtIndex:0] isKindOfClass:[UITabBar class]] ) 10 {
11 contentView = [self.tabBarController.view.subviews objectAtIndex:1]; 12 } 13 else 14 {
15 contentView = [self.tabBarController.view.subviews objectAtIndex:0]; 16 } 17 // [UIView beginAnimations:@"TabbarHide" context:nil]; 18 if ( hide ) 19 {
20 contentView.frame = self.tabBarController.view.bounds; 21 } 22 else 23 {
24 contentView.frame = CGRectMake(self.tabBarController.view.bounds.origin.x, 25 self.tabBarController.view.bounds.origin.y, 26 self.tabBarController.view.bounds.size.width, 27 self.tabBarController.view.bounds.size.height - self.tabBarController.tabBar.frame.size.height); 28 } 29 30 self.tabBarController.tabBar.hidden = hide; 31 // [UIView commitAnimations]; 32 }

时机

1 - (void)viewWillAppear:(BOOL)animated {
2 [self setFullScreen:YES]; 3 } 4 5 - (void)viewWillDisappear:(BOOL)animated {
6 [self setFullScreen:NO]; 7 } 8 9 - (void)setFullScreen:(BOOL)fullScreen {
10 // 状态条 11 [UIApplication sharedApplication].statusBarHidden = fullScreen; 12 // 导航条 13 [self.navigationController setNavigationBarHidden:fullScreen]; 14 // tabBar的隐藏通过在初始化方法中设置hidesBottomBarWhenPushed属性来实现。 15 }

转载于:https://www.cnblogs.com/leaf-w/archive/2011/11/02/2233052.html

你可能感兴趣的文章
joj2016: Sort the Students
查看>>
Copy-On-Write容器
查看>>
判断网页请求与FTP请求
查看>>
15.二叉链表类
查看>>
页面置换算法-LRU(Least Recently Used)c++实现
查看>>
如何获取Android系统时间是24小时制还是12小时制
查看>>
Android实现获取本机中所有图片
查看>>
CSS3 总结-2
查看>>
fur168.com 改成5917电影
查看>>
PHP上传RAR压缩包并解压目录
查看>>
codeforces global round 1题解搬运
查看>>
python os模块
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
jenkins常用插件汇总
查看>>
c# 泛型+反射
查看>>
第九章 前后查找
查看>>
Python学习资料
查看>>
多服务器操作利器 - Polysh
查看>>
[LeetCode] Candy
查看>>
Jmeter学习系列----3 配置元件之计数器
查看>>