状态栏的字体为黑色:UIStatusBarStyleDefault
状态栏的字体为白色:UIStatusBarStyleLightContent
一、在info.plist中,将View controller-based status bar appearance设为NO
状态栏字体的颜色只由下面的属性设定,默认为白色:
解决个别vc中状态栏字体颜色不同的办法
1、在info.plist中,将View controller-based status bar appearance设为NO.
2、在app delegate中:
3、在个别状态栏字体颜色不一样的vc中
二、在info.plist中,将View controller-based status bar appearance设为YES,或者没有设置。
View controller-based status bar appearance
的默认值就是YES。
如果View controller-based status bar appearance
为YES。
则[UIApplication sharedApplication].statusBarStyle
无效。
用下面的方法:
1、在vc中重写vc的preferredStatusBarStyle方法。
2、在viewDidload中调用: [self setNeedsStatusBarAppearanceUpdate];
但是,当vc在nav中时,上面方法没用,vc中的preferredStatusBarStyle方法根本不用被调用。
原因是, [self setNeedsStatusBarAppearanceUpdate]
发出后,
只会调用navigation controller中的preferredStatusBarStyle方法,
vc中的preferredStatusBarStyley方法跟本不会被调用。
解决办法有两个:
方法一:
设置navbar的barStyle 属性会影响status bar 的字体和背景色。如下。
方法二:
自定义一个nav bar的子类,在这个子类中重写preferredStatusBarStyle方法:
附:修改状态栏的背景颜色 (牵扯到UIWindow的层级关系)
备注: 因为在OC中,都应该知道UIWindow有三个层级,如下:
UIKIT_EXTERN const UIWindowLevel UIWindowLevelNormal;
UIKIT_EXTERN const UIWindowLevel UIWindowLevelAlert;
UIKIT_EXTERN const UIWindowLevel UIWindowLevelStatusBar
它们层级的优先级的值分别对应的是:
UIWindowLevelNormal: 0
UIWindowLevelAlert: 1000
UIWindowLevelStatusBar:2000
(而且UIAlertView的层级优先级为1996,UIActionSheet的层级优先级为2001)
优先级
总结:
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对VEVB武林网的支持。
新闻热点
疑难解答