状态栏样式问题

时间:2015-05-09 18:53:56

标签: ios statusbar

我的iOS 8应用需要一个Light content状态栏,但它会显示为Dark。这件事情仍然存在,我无法让它发挥作用。

到目前为止我尝试过:

  • Info.plist
  • 中设置状态栏样式
  • 使用UIApplication
  • 通过代码设置样式
  • 尝试设置UINavigationBar
  • 设置UIViewControllers
  • 的状态栏属性

以上都没有,我在加载屏幕故事板上得到Light content,但是一旦从UIViewController加载起始storyboard,它就会变暗。有没有想过为什么会这样?

1 个答案:

答案 0 :(得分:1)

将该代码放入视图控制器

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    [self setNeedsStatusBarAppearanceUpdate];
}

- (UIStatusBarStyle)preferredStatusBarStyle {
    return UIStatusBarStyleLightContent;
}