答案 0 :(得分:0)
请更具描述性。
如果要更改条形项目的背景,可以通过tabBar.items
访问它们。
答案 1 :(得分:0)
如果要隐式设置标签栏的色调和barTint颜色,请在Appdelegate.swift
中
UITabBar.appearance().barTintColor = UIColor.orangeColor()
UITabBar.appearance().tintColor = UIColor.greenColor()
如果您想为特定的viewController
设置标签栏的色调和barTint颜色,则在ViewController.swift
中,
self.tabBarController?.tabBar.tintColor = UIColor.orangeColor()
self.tabBarController?.tabBar.barTintColor = UIColor.greenColor()
您可以看看这个link