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

tabbar选中按钮的标题颜色和字体

时间:2017-02-27 23:01:21      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:black   rsn   color   控制   默认   void   round   tabbar   span   

@implementation XMGTabBarController

/*
 问题:
 1.选中按钮的图片被渲染 -> iOS7之后默认tabBar上按钮图片都会被渲染 1.修改图片 2.通过代码 √
 2.选中按钮的标题颜色:黑色 标题字体大 -> 对应子控制器的tabBarItem
 3.发布按钮显示不出来
 */

// 只会调用一次
+ (void)load
{
    // 获取哪个类中UITabBarItem,appearance:只能在控件显示之前设置,才有作用
    UITabBarItem *item = [UITabBarItem appearanceWhenContainedIn:self, nil];
    
    // 设置按钮选中标题的颜色:富文本:描述一个文字颜色,字体,阴影,空心,图文混排
    // 创建一个描述文本属性的字典
    NSMutableDictionary *attrs = [NSMutableDictionary dictionary];
    attrs[NSForegroundColorAttributeName] = [UIColor blackColor];
    [item setTitleTextAttributes:attrs forState:UIControlStateSelected];
    
    // 设置字体尺寸:只有设置正常状态下,才会有效果
    NSMutableDictionary *attrsNor = [NSMutableDictionary dictionary];
    attrsNor[NSFontAttributeName] = [UIFont systemFontOfSize:13];
    [item setTitleTextAttributes:attrsNor forState:UIControlStateNormal];
}

 

tabbar选中按钮的标题颜色和字体

标签:black   rsn   color   控制   默认   void   round   tabbar   span   

原文地址:http://www.cnblogs.com/xufengyuan/p/6476611.html

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