欢迎来到代码驿站!

iOS代码

当前位置:首页 > 移动开发 > iOS代码

IOS点击按钮隐藏状态栏详解及实例代码

时间:2021-01-18 14:47:37|栏目: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中Label实现显示不同颜色与字体的方法

栏    目:iOS代码

下一篇:iOS 指压即达集成iOS9里的3D Touch的方法

本文标题:IOS点击按钮隐藏状态栏详解及实例代码

本文地址:http://www.codeinn.net/misctech/47272.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有