我知道这个话题有类似的答案,但我似乎无法得出任何结论。我正在使用IOS 8和在app delegate中创建的标签栏。有没有办法将选定的标签栏项目设置为某种颜色。优选地,不使用图像。
答案 0 :(得分:0)
[[UITabBar appearance] setTintColor:[UIColor myBlueishColor]];
[[UITabBar appearance] setSelectedImageTintColor:[UIColor myBlueishColor]];
您可以在此处找到更多相关信息: http://jslim.net/blog/2014/05/05/ios-customize-uitabbar-appearance/