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

IOS 杂笔-13(appearance的巧妙使用)

时间:2017-06-18 22:41:35      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:appear   dict   sel   att   pre   selected   sys   attrs   ext   

技术分享
NSDictionary * attrs = @{
                             
                             NSFontAttributeName:[UIFont systemFontOfSize:13],
                             NSForegroundColorAttributeName:[UIColor grayColor]
                             
                             };
    
    NSDictionary * selectAttrs = @{
                                   
                                   NSFontAttributeName:[UIFont systemFontOfSize:12],
                                   NSForegroundColorAttributeName:[UIColor darkGrayColor]
                                   
                                   };
    
    UITabBarItem * item = [UITabBarItem appearance];
    [item setTitleTextAttributes:attrs forState:UIControlStateNormal];
    [item setTitleTextAttributes:selectAttrs forState:UIControlStateSelected];
技术分享

IOS 杂笔-13(appearance的巧妙使用)

标签:appear   dict   sel   att   pre   selected   sys   attrs   ext   

原文地址:http://www.cnblogs.com/wuyuxin/p/7045589.html

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