步骤1、
打开 info.plist 文件,设置属性 View controller-based status bar appearance 值为 NO;
步骤2、
点击项目名称,选择General 找到 Status Bar Style 选择对应的属性。也可以在 Application.m 的 didFinishLaunchingWithOptions 方法中添加代码:
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;
此操作皆为全局操作。
(如果某一个控制器需要单独处理,可将上边代码,放到对应方法中即可)