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

设置tabbar上面文字的颜色

时间:2016-05-13 07:56:25      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

 //设置tabbar 选中文字的颜色

    [[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Bold" size:10.0f],

                                                        NSForegroundColorAttributeName : [UIColor colorWithRed:63/255.0 green:178/255.0 blue:227/255.0 alpha:1]

                                                        } forState:UIControlStateSelected];

    //设置tabbar  未选中文字的颜色

    [[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Bold" size:10.0f],

                                                        NSForegroundColorAttributeName : [UIColor colorWithRed:145/255.0 green:158/255.0 blue:180/255.0 alpha:1]

                                                        } forState:UIControlStateNormal];

设置tabbar上面文字的颜色

标签:

原文地址:http://www.cnblogs.com/xiaolingling1126/p/5485082.html

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