IOS如何实现点击按钮隐藏状态栏
                                            这篇文章将为大家详细讲解有关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如何实现点击按钮隐藏状态栏
链接URL:http://www.scyingshan.cn/article/jodsoo.html

 建站
建站
 咨询
咨询 售后
售后
 建站咨询
建站咨询 
 