IOS8修改状态栏颜色

使用了storyboard,直接view controller里面设置status bar为light content不行,不知道为什么。我使用的是以下方法


我们可以使用UIApplication的statusBarStyle方法来设置状态栏,不过,首先需要停止使用View controller-based status bar appearance。在project target的Info tab中,插入一个新的key,名字为View controller-based status bar appearance,并将其值设置为NO。

IOS8修改状态栏颜色_第1张图片

然后就可以使用下面的代码来设置状态栏风格了:

 
  
  1. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]; 

你可能感兴趣的:(iOS)