/*更改狀態(tài)欄顏色
* RootViewController為Viewcontroller時候有用
*/
- (UIStatusBarStyle)preferredStatusBarStyle{
return UIStatusBarStyleLightContent;
}
/*RootViewController是navgationController時候用
* 這個時候導航欄就變成黑色的了
*/
self.navigationController.navigationBar.barStyle = UIBarStyleBlack;