iOS 7之后更改导航栏字体颜色几种方法
2016-07-15 本文已影响61人
1b3bd36d9d21
岁数大了,记忆不行了,还是烂笔头靠谱,直接上代码,以备后期自己使用
第一种:
UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 44)];
title.text = @"全国小记者互动平台";
title.font = kFont(18);
title.textAlignment = NSTextAlignmentCenter;
title.textColor = [UIColor whiteColor];
// 给导航标题设置一个自定义View
self.navigationItem.titleView = title;
第二种 比较简单 推荐使用:
// 直接获取导航栏唯一对象
UINavigationBar *bar = [UINavigationBar appearance];
// bar.barTintColor = [UIColor redColor];
// 设置标题颜色字典
NSDictionary *dictAttr = @{NSForegroundColorAttributeName:[UIColor whiteColor]};
bar.titleTextAttributes = dictAttr;
第三种 后期在补:
Loading......