1. 修改导航条最上面的时间,电量颜色:
[[
UINavigationBar appearance] setBarStyle:UIBarStyleBlackTranslucent];
2.修改导航条颜色:
[[UINavigationBar appearance] setBarTintColor:[UIColor redColor]];
3.单个修改导航条颜色:
self.navigationController.navigationBar.tintColor = [UIColor redColor];
4.单个修改导航条title文字:
创建label,添加在:
self.navigationItem.titleView = label;