状态栏在模拟指标swift ios中更改颜色

时间:2016-06-23 07:03:13

标签: ios xcode swift

我想通过模拟指标更改状态栏颜色,但是,当我选择我的视图控制器并将状态栏设置为轻量级内容时,没有任何更改。我应该在代码中执行此操作还是通过以这种方式设置状态栏颜色我做错了什么?

1 个答案:

答案 0 :(得分:0)

使用此代码,

的AppDelegate:

didFinishLaunchingWithOptions: method

UIApplication.sharedApplication().statusBarStyle = .LightContent

如果您显示特定ViewController,请使用以下代码,

选择ViewController文件,viewDidLoad方法,使用此代码

UIApplication.sharedApplication().statusBarStyle = .LightContent

希望它有用