征服iOS

设置 NavigationBar title 字体大小 颜色

2016-04-22  本文已影响4041人  dymost
// 属性参数在 NSAttributedString.h 文件中
//这里我们设置的是颜色,字体大小,还可以设置其他,具体可以参见api
UIColor * color = [UIColor whiteColor];
UIFont *font = [UIFont systemFontOfSize:19];

NSMutableDictionary *dict=[NSMutableDictionary dictionary];
[dict setObject:color forKey:NSForegroundColorAttributeName];
[dict setObject:font forKey:NSFontAttributeName];

UINavigationBar *bar = [UINavigationBar appearance];
bar.titleTextAttributes = dict;
上一篇下一篇

猜你喜欢

热点阅读