2

I created an appleTV app on tvOS 13! and I'm faced with some tabbar customization problems. I want to change the focused item color, I can change the text color, but I can't change the white focus background!

enter image description here

And also the tabBar add an alpha to 0.5 on not selected image how to remove it?

Thanks

Community
  • 1
  • 1

1 Answers1

3

On tvOS 13 you need to access the standardAppearance to change it:

tabBarController?.tabBar.standardAppearance.selectionIndicatorTintColor = UIColor.red
Pedro Antunes
  • 192
  • 1
  • 6
  • Yep I can change the selectionIndicatorTintColor to red or else but I won't it to be clear and when I set it to clear there still a background to white -_- – sivanesan Jegathas Mar 09 '20 at 13:21