iOS7 状态栏 修改为白色字体的步骤


1在Info.plist中设置UIViewControllerBasedStatusBarAppearance 为NO
2 在需要改变状态栏颜色的ViewController中在ViewDidLoad方法中增加:
[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];

如果需要在全部View中都变色,可以写在父类的相关方法中,或者写到AppDelegate中。

iOS7 状态栏 修改为白色字体的步骤,布布扣,bubuko.com

iOS7 状态栏 修改为白色字体的步骤

上一篇:Android 识别身份证号码(图片识别)


下一篇:Android AlarmManager 的一点了解