系统状态栏改为白色:在Supporting Files文件的info.plist文件中添加
新的key,名字为View controller-based status bar appearance
,并将其值设置为NO。
在AppDelegate里面设置 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
设置导航栏默认颜色
[[UINavigationBar appearance] setBarTintColor:Color(72 ,71 ,87)];
[[UINavigationBar appearance] setTranslucent:NO];
隐藏状态栏
有时候我们需要隐藏状态栏,那么此时我们在view controller中override方法prefersStatusBarHidden:即可,如下代码所示:
- (BOOL)prefersStatusBarHidden
{
return YES;
}
参考网址:http://blog.csdn.net/yongyinmg/article/details/23864949