标签: ios swift uitabbarcontroller
tabBar上的4th button有4个标签,我badge orange colour,4th button badge { {1}}已从colour更改为gray。即使在orange点击后,我也需要保留orange。
tabBar
4th button
badge
orange colour
colour
gray
orange
答案 0 :(得分:0)
打开故事板选择您需要添加徽章的选项卡,然后选择属性,然后在徽章属性下方显示徽章颜色属性,如下图所示。
或以编程方式: -
self.tabBarController?.tabBar.items![0].badgeColor = .black
谢谢。