我有4个图标。我希望它们在选择时具有不同的“突出显示”颜色。
我该如何实现?
最佳答案
在presentVC中的viewWillAppear
中:
override func viewWillAppear(animated: Bool) {
self.tabBarController.tabBar.tintColor = UIColor.redColor()
super.viewWillAppear(animated)
}
在其他颜色中,只需使用其他颜色即可。
关于ios - 选择后如何为每个图标设置不同的UITabBar.tintColor?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35166033/