细节:舶来

tabBar点击,默认是蓝色

更改

// 图标颜色
self.tabBar.tintColor = TAB_BAR_COLOR;

// 字体颜色 选中
    [[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-Bold" size:12.0F], NSForegroundColorAttributeName : TAB_BAR_COLOR} forState:UIControlStateSelected];

    // 字体颜色 未选中
    [[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName : [UIFont systemFontOfSize:12.0F],  NSForegroundColorAttributeName:[UIColor grayColor]} forState:UIControlStateNormal];
    


item.tabBar.translucent = false;
item.tabBar.tintColor = UIColor.yellowColor()  选中色

item.tabBar.barTintColor = 背景色


你可能感兴趣的:(细节:舶来)