iOS 状态栏和导航条配置
一:隐藏:
1
2 |
[self.navigationController setNavigationBarHidden:YES animated:YES]; [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault animated:YES]; |
二:状态值
参考:http://beyondvincent.com/blog/2013/11/03/120-customize-navigation-status-bar-ios-7/
http://book.51cto.com/art/201003/186505.htm
原文:http://www.cnblogs.com/cocoajin/p/3534123.html