美文网首页
修改Navigationcontroller title 字体的

修改Navigationcontroller title 字体的

作者: 飘着点儿 | 来源:发表于2017-02-14 15:38 被阅读21次

背景

自定义的NavigationController在IOS7下,title字体的颜色编程了黑色,极为不雅

解决方法

//选择自己喜欢的颜色

UIColor * color = [UIColor whiteColor];

//这里我们设置的是颜色,还可以设置shadow等,具体可以参见api

NSDictionary * dict = [NSDictionary dictionaryWithObject:color forKey:NSForegroundColorAttributeName];

self.navigationBar.titleTextAttributes = dict;

相关文章

网友评论

      本文标题:修改Navigationcontroller title 字体的

      本文链接:https://www.haomeiwen.com/subject/rbgxwttx.html