user2985289
user2985289

Reputation: 203

iOS Tab Bar Item Custom Images

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

Answers (1)

casillas
casillas

Reputation: 16813

Here is the solution

[[UIView appearance] setTintColor:[UIColor clearColor]];

Upvotes: 1

Related Questions