这篇文章主要介绍了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点击按钮隐藏状态栏详解及实例代码
基础教程推荐
猜你喜欢
- Android开发使用RecyclerView添加点击事件实例详解 2023-06-15
- IOS 播放系统提示音使用总结(AudioToolbox) 2023-03-01
- Flutter绘图组件之CustomPaint使用详解 2023-05-12
- android studio按钮监听的5种方法实例详解 2023-01-12
- iOS开发教程之XLForm的基本使用方法 2023-05-01
- Flutter手势密码的实现示例(附demo) 2023-04-11
- Android中的webview监听每次URL变化实例 2023-01-23
- 解决Android Studio突然不显示logcat日志的问题 2023-02-04
- Android多返回栈技术 2023-04-15
- IOS应用内跳转系统设置相关界面的方法 2022-11-20
