状态栏背景色设置

1.在Info.plist中添加字段UIViewControllerBasedStatusBarAppearance 并设置为NO
如图

状态栏背景色设置_第1张图片
Info_plis设置.png

2.在需要改变状态栏颜色的ViewController中在ViewDidLoad方法中增加:

[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];

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

你可能感兴趣的:(状态栏背景色设置)