iOS 导航栏颜色字体设置
2018-08-20 本文已影响18人
CaptainRoy
- 导航栏标题字体大小和颜色
NSDictionary *textAttributes = @{
NSFontAttributeName : [UIFont systemFontOfSize:20.0f],
NSForegroundColorAttributeName : [UIColor orangeColor]};
[self.navigationBar setTitleTextAttributes:textAttributes];
- 导航栏背景颜色
[self.navigationBar setBarTintColor:[UIColor blackColor]];