设置选定的标签栏项目色调?

时间:2015-02-06 10:00:40

标签: ios objective-c uitabbarcontroller uitabbaritem

我知道这个话题有类似的答案,但我似乎无法得出任何结论。我正在使用IOS 8和在app delegate中创建的标签栏。有没有办法将选定的标签栏项目设置为某种颜色。优选地,不使用图像。 id like to replicate this if possible

1 个答案:

答案 0 :(得分:0)

[[UITabBar appearance] setTintColor:[UIColor myBlueishColor]];
[[UITabBar appearance] setSelectedImageTintColor:[UIColor myBlueishColor]];

您可以在此处找到更多相关信息: http://jslim.net/blog/2014/05/05/ios-customize-uitabbar-appearance/