Mando
Mando

Reputation: 11712

Update foreground color of selected image in UITabBarItem

I have changed the default blue color of some selected text with setTitleTextAttributes. However, the image still becomes blue when selected.

enter image description here

How can I change this behavior?

Upvotes: 0

Views: 109

Answers (1)

roycable
roycable

Reputation: 301

I would use UIAppearance.

[[UITabBar appearance] setSelectedImageTintColor:[UIColor redColor]];

Upvotes: 3

Related Questions