-、第一种做法(iOS9.0中已经废除,不建议使用)
在iOS 7中,我们也可以使用UIApplication的statusBarStyle方法来设置状态栏,不过,首先需要停止使用View controller-based status bar appearance。在project target的Info tab中,插入一个新的key,名字为View controller-based status bar appearance,并将其值设置为NO。
在需要改变状态栏颜色的ViewController中在ViewDidLoad方法中增加:
[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
如果需要在全部View中都变色,可以写在父类的相关方法中,或者写到AppDelegate中。
二、介绍第二种做法,这个厉害(强烈推荐)
- (UIStatusBarStyle)preferredStatusBarStyle
在需要的控制器里面重写这个方法,返回值就是UIStatusBarStyleDefault或者UIStatusBarStyleLightContent在该方法里面,如果只是简单的返回值而已,那么该界面在显示的时候会立马改变StatusBar的前景部分
如果该VC已经显示出来了,你需要做的就是根据滚动的偏移量在实时更改StatusBar的前景颜色,那么你就要用到[self setNeedsStatusBarAppearanceUpdate];
来显视调用preferredStatusBarStyle这个方法才能更改StatusBar的颜色然而毛用,根本不会调用
要重写(创建UINavigationController一个Category,在分类里重写)
- (UIViewController *)childViewControllerForStatusBarStyle:
这个方法默认返回值是nil。也就是当我们调用setNeedsStatusBarAppearanceUpdate的时候,系统会调用container(容器控制器)的preferredStatusBarStyle这个方法(app.window.rootViewController的preferred的方法,一般我们用UINavigationController或者UITabBarController来做container),也就是根本不会调用子控制器(我们所看到的UIViewcontroller)的preferredStatusBarStyle方法。这个时候- (UIViewController *)childViewControllerForStatusBarStyle:
就派上用场了。
给UINavigationController写一个Catogory,implementation如下,然后记得在需要的界面包含头文件就行
#import "UINavigationController+OLStatusBarStyle.h"
@implementation UINavigationController (OLStatusBarStyle)
- (UIViewController *)childViewControllerForStatusBarStyle{
return self.visibleViewController;
}
- (UIViewController *)childViewControllerForStatusBarHidden{
return self.visibleViewController;
}
该类扩展的意思就是,我重写了,你不要调用Container(NavigationController或者UITabBarController)的preferredStatusBarStyle这个方法了,去调用self.visibleViewController
的preferredStatusBarStyle
,那么,我们写在UIViewcontroller里面的方法就会被调用了,就能更改StatusBar的前景颜色了。
真的能改吗?跑起来毛用没有。还要在plist文件里把View controller-based status bar appearance
设置成YES。
总结:
只要UIViewController重写的childViewControllerForStatusBarStyle
返回值不是nil,那么UIViewcontroller的preferredStatusBarStyle方法不会被系统的Container(NavigationController或者UITabBarController)调用,而是调用childViewControllerForStatusBarStyle
返回的UIViewController的preferredStatusBarStyle来控制StatuBar的颜色