我正在使用Swift 4处理UITabBar
,我想要选择和未选中标签的不同图标。
但UITabBar
仅更改tintColor
,我无法为选定和未选择的标签设置不同的图像。
因此,如果可以为选定和未选择的标签设置不同的图标,请告诉我。
这就是我的尝试:
let item1 = self.storyboard?.instantiateViewController(withIdentifier: "DashboardViewController")
let icon1 = UITabBarItem(title: "", image: UIImage(named: "first_unselected"), selectedImage: UIImage(named: "first_selected"))
item1?.tabBarItem = icon1
答案 0 :(得分:1)
问题不在于你如何创建UITabBarItem
- 我已经测试了它并且它有效。所以我想问题出在你设置的地方:
let item1 = self.storyboard?.instantiateViewController(withIdentifier: "DashboardViewController")
您必须意识到这行代码会创建DashboardViewController
的 NEW 实例,而不是屏幕上显示的实例。因此,除非您稍后出现item1
,否则当然这些代码行不会对屏幕产生任何影响。
您要做的是配置屏幕上显示的实例(由故事板自动加载的实例)。我认为最好也是最简单的方法是将配置代码添加到DashboardViewController
的初始值设定项中 - 这样DashboardViewController
的任何实例都会正常运行 - 所以屏幕上也会出现一个。
以下面的代码为例:
import UIKit
class DashboardViewController: UIViewController {
override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
initialize()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
initialize()
}
func initialize() {
let icon1 = UITabBarItem(title: "", image: #imageLiteral(resourceName: "first_unselected"), selectedImage: #imageLiteral(resourceName: "first_selected"))
self.tabBarItem = icon1
}
}
答案 1 :(得分:0)
根据文档,您应该在UITabBarItem中使用selectedImage属性。
let tabBarButton = UITabBarItem(title: "", image:
UIImage(named:"image"))
tabBarButton.selectedImage: UIImage(named: "selected_image")
默认情况下,将根据源图像中的Alpha值自动创建实际未选择和选定的图像。要防止系统>着色,请使用alwaysOriginal提供图像。