Reputation: 203
I have been attempting to create a tabbed application with tab bar items that are custom images, but no matter what I do there is always a tint over it.
Is there any way to use the image and preserve all the original colors without it automatically covering it with a tint?
Thank you, any help is appreciated!
Upvotes: 0
Views: 462
Reputation: 16813
Here is the solution
[[UIView appearance] setTintColor:[UIColor clearColor]];
Upvotes: 1