0

I want to change just one of my tabs' background colors. I also want to change only one of their tint colors. How would I do this using Swift?

self.tabBarController!.tabBar.barTintColor = UIColor.whiteColor()
var tabBarItems = self.tabBarController!.tabBar.items as Array<UITabBarItem>
tabBarItems[0]....?
Randall Stephens
  • 1,037
  • 1
  • 10
  • 16

1 Answers1

0

In the end, I created a button and covered the tabbaritem with it.

Randall Stephens
  • 1,037
  • 1
  • 10
  • 16