码迷,mamicode.com
首页 > 其他好文 > 详细

UINavigationController改变UINavigationBar导航条标题颜色跟字体

时间:2016-03-31 00:10:29      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

UINavigationController改变UINavigationBar导航条标题颜色跟字体

UINavigationController改变UINavigationBar导航条标题颜色和字体

iOS 5 以后 UINavigationController 可以 改变UINavigationBar导航条标题颜色和字体

 

 

[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:

                                                                     [UIColor colorWithRed:0 green:0.7 blue:0.8 alpha:1], UITextAttributeTextColor,

                                                                     [UIColor colorWithRed:0 green:0.7 blue:0.8 alpha:1], UITextAttributeTextShadowColor,

                                                                     [NSValue valueWithUIOffset:UIOffsetMake(0, 0)], UITextAttributeTextShadowOffset,

                                                                     [UIFont fontWithName:@"Arial-Bold" size:0.0], UITextAttributeFont,

                                                                     nil]];

    

 

其中 UITextAttributeTextColor和UITextAttributeFont 属性是文字颜色和字体

UINavigationController改变UINavigationBar导航条标题颜色跟字体

标签:

原文地址:http://www.cnblogs.com/liumu/p/5339421.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!