This question already has answers here:
How to change Status Bar text color in iOS
(52个答案)
三年前关闭。
我试着改变IOS应用程序的风格。跟我来。
以及
但我有默认样式的结果:
怎么解决?
(52个答案)
三年前关闭。
我试着改变IOS应用程序的风格。跟我来。
UIApplication.sharedApplication().setStatusBarStyle(UIStatusBarStyle.LightContent, animated: false)
application.statusBarStyle = UIStatusBarStyle.LightContent
以及
但我有默认样式的结果:
怎么解决?
最佳答案
转到项目目标的“信息”选项卡,添加行:UIViewControllerBasedStatusBarAppearance
,设定值NO
并将部署信息中的状态栏设置为“亮”
应该有用
09-07 14:20