码迷,mamicode.com
首页 > 移动开发 > 详细

ios导航条设置

时间:2016-01-24 15:39:43      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

 1     // 3.设置导航条的主题
 2     // 如果要同时设置很多UINavigationBar的样式, 可以通过设置UINavigationBar的主题的方式来设置以便简化代码
 3     UINavigationBar *navBar = [UINavigationBar appearance];
 4     // 3.1设置所有导航条的背景图片
 5     
 6     [navBar setBackgroundImage:[UIImage imageNamed:@"NavBar64"] forBarMetrics:UIBarMetricsDefault];
 7    
 8     // 3.2设置所有导航条的标题颜色
 9     NSMutableDictionary *md = [NSMutableDictionary dictionary];
10     md[NSFontAttributeName] = [UIFont systemFontOfSize:16];
11     md[NSForegroundColorAttributeName] = [UIColor whiteColor];
12     [navBar setTitleTextAttributes:md];
13   

 

ios导航条设置

标签:

原文地址:http://www.cnblogs.com/PJHome/p/5155188.html

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