Reputation: 11712
I have changed the default blue color of some selected text with setTitleTextAttributes.
However, the image still becomes blue when selected.
How can I change this behavior?
Upvotes: 0
Views: 109
Reputation: 301
I would use UIAppearance.
[[UITabBar appearance] setSelectedImageTintColor:[UIColor redColor]
];
Upvotes: 3