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

设置UITabBarController的背景颜色

时间:2015-01-15 12:47:39      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:

 if (IOS7) {
        self.tabBarController.tabBar.barTintColor = kTAB_BAR_GB_COLOR;
    }else{
        self.tabBarController.tabBar.tintColor = kTAB_BAR_GB_COLOR;
        [[UITabBar appearance] setBackgroundImage:[ZQUtiles imageWithColor:kTAB_BAR_GB_COLOR size:CGSizeMake(29, 1)]];//设置背景,修改颜色是没有用的
        
        [[UITabBar appearance] setSelectionIndicatorImage:[ZQUtiles imageWithColor:kTAB_BAR_GB_COLOR size:CGSizeMake(29, 1)]];
        
        [[UITabBar appearance] setShadowImage:[ZQUtiles imageWithColor:kDEFAULT_BG_COLOR size:CGSizeMake(29, 1)]];//隐藏那条黑线
        
        [[UITabBarItem appearance] setTitlePositionAdjustment:UIOffsetMake(0, -2)];
    }

 

设置UITabBarController的背景颜色

标签:

原文地址:http://www.cnblogs.com/niit-soft-518/p/4225866.html

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