广告
返回顶部
首页 > 资讯 > 移动开发 >iOS状态栏、导航栏的一些笔记分享
  • 828
分享到

iOS状态栏、导航栏的一些笔记分享

ios状态栏导航栏 2022-05-27 15:05:55 828人浏览 八月长安
摘要

前言 iOS的界面分为状态栏和导航栏,如下图所示: 状态栏与导航栏的位置如上图,我们可以通过[UIApplication sharedApplication].statusBarF

前言

iOS的界面分为状态栏和导航栏,如下图所示:

状态栏与导航栏的位置如上图,我们可以通过[UIApplication sharedApplication].statusBarFrame.size获取状态栏的size(一般没有刘海时的高度为20,有刘海时的高度为44)。

通过self.navigationController.navigationBar.frame.size获取导航栏的size(一般高度为44,大标题时高度为xyz,当然也可以通过自定义来改变导航栏样式)。

***ps:***在我们通过[nav.navigationBar setBarTintColor:[UIColor lightGrayColor]];来设置导航栏颜色时,将导致导航栏和状态栏背景色均变为浅灰色。

1. 状态栏内容是否高亮

状态栏内容包括信号、时间、电量等,只有两种颜色样式(黑或白)。iOS开发过程中提供修改状态栏内容颜色样式的方法:

在代码中设置状态栏内容颜色:info.plist文件中直接设置状态栏内容颜色:在info.plist中添加字段View controller-based status bar appearance, 当其取值为YES时,表示以UIController对状态栏的设置为准,UIApplication对状态栏进行的设置将不起作用。


// 在controller中重写该方法,并返回相应值
- (UIStatusBarStyle)preferredStatusBarStyle {
 
 return UIStatusBarStyleLightContent;
}

// 注意:
// 当controller嵌入UINavigationController中时,controller中的方法preferredStatusBarStyle是不会自动被调用的,而navController中的该方法会被调用;
// 当有navController时,在重写controller中的preferredStatusBarStyle方法同时,我们还应重写navController中的childViewControllerForStatusBarStyle方法。
- (UIViewController *)childViewControllerForStatusBarStyle {
 
 return self.topViewController;
}

当字段View controller-based status bar appearance取值为NO时,则以UIApplication为准,控制器设置状态栏的方法preferredStatusBarStyle则根本不会被调用。


// 状态栏内容-黑色
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleDefault;
// 状态栏内容-白色
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;

在info.plist文件中直接设置状态栏内容颜色:字段View controller-based status bar appearance取值为NO,且Status bar style取值为UIStatusBarStyleLightContent(可选),则不写代码,也可控制应用中的状态栏内容颜色。

2. 隐藏状态栏

整个项目隐藏在Targets -> General -> 勾选 Hide status bar 即可。

在单个界面中隐藏


// iOS 9.0 之前
// 隐藏=YES,显示=NO; Animation:动画效果
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone];

// iOS 9.0 之后推荐使用这个
// 注意:该方法可以通过UIController中的方法setNeedsStatusBarAppearanceUpdate来间接调用
- (BOOL)prefersStatusBarHidden {
 
 return YES;
}

注意:上面两个操作状态方法依然受到Info.plist中字段View controller-based status bar appearance取值得影响,该字段取值为YES时,进入controller会自动调用prefersStatusBarHidden方法。当controller嵌入UINavigationController中时,controller中的方法prefersStatusBarHidden是不会自动被调用的,而navController中的该方法会被调用;当有navController时,在重写controller中的prefersStatusBarHidden方法同时,我们还应重写navController中的childViewControllerForStatusBarHidden方法。


- (UIViewController *)childViewControllerForStatusBarHidden {
 
 return self.topViewController;
}

启动页隐藏状态栏,进入程序后正常显示状态栏 首先,在Targets->General->勾选中Hide status bar或者在info.plist里面 Status bar is initially hidden 设置为 YES; 其次,在AppDelegate.m中添加代码


-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
 [application setStatusBarHidden:NO withAnimation:UIStatusBarAnimationFade];
}

导航栏

UINavigationController的视图层次结构比较清晰,用户可见的导航栏即为其中的***UINavigationBar***,通过它,我们就可以修改导航栏的样式。下面我们就逐步介绍一些常用的关于导航栏的操作。

导航栏常用操作


// 隐藏导航栏
//[self.navigationController setNavigationBarHidden:YES];
[self.navigationController setNavigationBarHidden:YES animated:YES];

// 设置导航背景为红色
[self.navigationController.navigationBar setBarTintColor:[UIColor redColor]];

// 设置navigationBar的透明效果
[self.navigationController.navigationBar setTranslucent:YES]; 
//设置导航栏的背景图片
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"imgName"] forBarMetrics:UIBarMetricsDefault];

// Attributes 属性
NSDictionary *textAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor],NSFontAttributeName:[UIFont systemFontOfSize:30]};
// 设置导航栏标题的字体大小、颜色
[self.navigationController.navigationBar setTitleTextAttributes:textAttributes];

4. 导航栏常用样式

在日常开发中,我们经常需要修改导航栏样式,如使导航栏透明、导航栏尺寸等,在不同样式导航栏之间的切换时还要注意是否平顺...(隐藏,与正常导航栏的切换)

导航栏大标题


if (@available(iOS 11.0, *)) {
  [self.navigationController.navigationBar setPrefersLargeTitles:YES];
}

自定义导航栏大标题样式

重写UINavigationBar中的layoutSubviews方法,可通过发送通知的形式来监听导航栏高度变化,如下:


-(void)layoutSubviews {
 [super layoutSubviews];
 
 [[NSNotificationCenter defaultCenter] postNotificationName:KEY_UINavigationBar_Height_Changed object:self userInfo:nil];
}

使导航栏透明

当需要设置导航栏透明且title等项正常显示时,最好将设置过程置于viewWillAppear:方法中:


//// 需要导航栏透明的ViewController中
- (void)viewWillAppear:(BOOL)animated {
 
 [super viewWillAppear:animated];
 
 _navView.hidden = NO;
 self.edgesForExtendedLayout = UIRectEdgeTop;
 self.navigationController.navigationBar.translucent = YES;
 [self.navigationController.navigationBar setShadowImage:[UIImage new]];
 [self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
 [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor whiteColor]}];
}

//// 导航栏为非透明的ViewController中
- (void)viewWillAppear:(BOOL)animated {
 
 [super viewWillAppear:animated];
 
 self.edgesForExtendedLayout = UIRectEdgeNone;
 self.navigationController.navigationBar.translucent = NO;
 [self.navigationController.navigationBar setShadowImage:nil];
 [self.navigationController.navigationBar setTintColor:[UIColor blackColor]];
 [self.navigationController.navigationBar setBackgroundImage:nil forBarMetrics:UIBarMetricsDefault];
 [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor blackColor]}];
}

关于自定义导航栏、tabBar的例子将在后续文章中介绍...

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对编程网的支持。

--结束END--

本文标题: iOS状态栏、导航栏的一些笔记分享

本文链接: https://www.lsjlt.com/news/30271.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作