IOS如何实现点击按钮隐藏状态栏
更新:HHH   时间:2023-1-8


这篇文章将为大家详细讲解有关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如何实现点击按钮隐藏状态栏”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

返回移动开发教程...