我想通过模拟指标更改状态栏颜色,但是,当我选择我的视图控制器并将状态栏设置为轻量级内容时,没有任何更改。我应该在代码中执行此操作还是通过以这种方式设置状态栏颜色我做错了什么?
答案 0 :(得分:0)
使用此代码,
的AppDelegate:
didFinishLaunchingWithOptions: method
UIApplication.sharedApplication().statusBarStyle = .LightContent
如果您显示特定ViewController,请使用以下代码,
选择ViewController
文件,viewDidLoad
方法,使用此代码
UIApplication.sharedApplication().statusBarStyle = .LightContent
希望它有用