两个关于导航栏上的一些设置:
隐藏时间
1.在appdelegate中
[[UIApplication sharedApplication]setStatusBarHidden:YES];
2.在info.plist中添加
View controller-based status bar appearance设置value为no
设置导航栏中字体title的颜色
UINavigationBar *bar = [UINavigationBar appearance];
NSDictionary *dict = @{
NSForegroundColorAttributeName : [UIColor whiteColor]
};
[bar setTitleTextAttributes:dict];
之前在用导航栏时可以设置导航栏的背景颜色,导航栏上的barItem的颜色,却无法设置title的颜色现在解决了。