// 定制全局的导航栏样式
- (void)customGlobalNavigationBar{
[[UINavigationBar appearance] setTitleTextAttributes:@{
NSFontAttributeName: [UIFont systemFontOfSize:21],//标题字体大小
NSForegroundColorAttributeName: [UIColor whiteColor]//标题字体颜色
}];
[[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:39/255 green:39/255 blue:64/255 alpha:1]];// 背景颜色
[UINavigationBar appearance].translucent = NO;//是否透明
// [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@""] forBarMetrics:UIBarMetricsDefault];// 背景图片
}