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

怎么设置自定义Tabbar的文字大小 -------ios

时间:2016-06-04 12:11:06      阅读:416      评论:0      收藏:0      [点我收藏+]

标签:

系统默认的tabbar感觉好小,很丑,于是得自己来设置它的大小

我们需要在

+(void)load   或者在 +(void)initialize 里设置

那这两个方法有什么区别呢

 

可以看这里 :(转载)http://www.jianshu.com/p/9368ce9bb8f9

我们在这里是用load方法

//在自定义tabbar中的控制器里
+ (void)load
{
    // 获取当前类的tabBarItem
    UITabBarItem *item = [UITabBarItem appearanceWhenContainedIn:self, nil];
    
    // 设置所有item的选中时颜色
    // 设置选中文字颜色
    // 创建字典去描述文本
    NSMutableDictionary *attr = [NSMutableDictionary dictionary];
    // 文本颜色 -> 描述富文本属性的key -> NSAttributedString.h
    attr[NSForegroundColorAttributeName] = [UIColor blackColor];
    [item setTitleTextAttributes:attr forState:UIControlStateSelected];

    // 通过normal状态设置字体大小
    // 字体大小 跟 normal
    NSMutableDictionary *attrnor = [NSMutableDictionary dictionary];
   
    // 设置字体
    attrnor[NSFontAttributeName] = [UIFont systemFontOfSize:13];
    
    [item setTitleTextAttributes:attrnor forState:UIControlStateNormal];
}

 

怎么设置自定义Tabbar的文字大小 -------ios

标签:

原文地址:http://www.cnblogs.com/beNabenen/p/5558418.html

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