iOS7中修改StatusBar的顯示顏色
app
效果圖以下:動畫
在iOS7中想手動修改statusBar的顏色,第一步須要作的就是在plist文件中設置View controller-based status bar appearance值爲NOspa
第二步就是在代碼中實現了,以下所示:code
// // RootViewController.m // statusBar // // Copyright (c) 2014年 Y.X. All rights reserved. // #import "RootViewController.h" @interface RootViewController () @end @implementation RootViewController - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteColor]; // 4秒鐘以後改變狀態 [self performSelector:@selector(delayRun) withObject:nil afterDelay:4.f]; } - (void)delayRun { // 動畫改變背景色 [UIView animateWithDuration:1 animations:^{ self.view.backgroundColor = [UIColor blackColor]; }]; /* 能夠選擇的參數 UIStatusBarStyleLightContent UIStatusBarStyleDefault */ // 動畫改變StatusBar顯示顏色 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent animated:YES]; } @end
如下是實現細節要注意的地方:orm