我们可以使用属性UITabBar
为所选状态设置tintColor
项颜色,但是如何为未选中状态的标签栏项目项设置tintColor?
答案 0 :(得分:0)
您可以为选定和未选择的标签栏按钮设置色调颜色,如下所示:
[[UIView appearanceWhenContainedIn:[UITabBar class], nil] setTintColor:[UIColor redColor]];
[[UITabBar appearance] setSelectedImageTintColor:[UIColor greenColor]];
[self calculateFolderSize];
第一行设置unselected
颜色 - 在此示例中为红色 - 通过设置标签栏中包含的UIView tintColor
。请注意,这只会设置unselected
图像的色调 - 它不会更改其下方文本的颜色。
第二行将标签栏的所选image
色调color
设置为绿色。
可能会帮助你。