我的iOS 8应用需要一个Light content
状态栏,但它会显示为Dark
。这件事情仍然存在,我无法让它发挥作用。
到目前为止我尝试过:
Info.plist
UIApplication
UINavigationBar
UIViewControllers
以上都没有,我在加载屏幕故事板上得到Light content
,但是一旦从UIViewController
加载起始storyboard
,它就会变暗。有没有想过为什么会这样?
答案 0 :(得分:1)
将该代码放入视图控制器
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
[self setNeedsStatusBarAppearanceUpdate];
}
- (UIStatusBarStyle)preferredStatusBarStyle {
return UIStatusBarStyleLightContent;
}