这篇文章将为大家详细讲解有关IOS如何实现点击按钮隐藏状态栏,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
成都创新互联公司是一家专注于网站设计、成都做网站和服务器托管的网络公司,有着丰富的建站经验和案例。
IOS点击按钮隐藏状态栏详解
实例代码:
@interface SecondViewController () @property (nonatomic, assign,getter=isHideStatus) BOOL hideStatus; @end @implementation SecondViewController - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteColor]; UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 300, 200)]; button.center = self.view.center; button.backgroundColor = [UIColor blueColor]; [button setTitle:@"隐藏导航栏" forState:UIControlStateNormal]; [button addTarget:self action:@selector(hideFrame) forControlEvents:UIControlEventTouchUpInside]; [self.view addSubview:button]; self.hideStatus = [UIApplication sharedApplication].statusBarHidden; // Do any additional setup after loading the view, typically from a nib. } - (void)hideFrame { [self setNeedsStatusBarAppearanceUpdate];//调用该方法后系统会调用prefersStatusBarHidden方法 self.hideStatus = !self.hideStatus; } - (BOOL)prefersStatusBarHidden { return self.hideStatus; }
关于“IOS如何实现点击按钮隐藏状态栏”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
分享名称:IOS如何实现点击按钮隐藏状态栏
链接地址:https://www.cdcxhl.com/article0/jodsoo.html
成都网站建设公司_创新互联,为您提供标签优化、品牌网站建设、品牌网站设计、微信公众号、建站公司、网站内链
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联