Conflicting UIBarbuttonItem's tintcolor and image

121 Views Asked by At

I have a UIToolbar in one of my VCs, it has 3 color buttons which changes the color of my drawing. Anyways I want to change the button's image when its selected. The images are shown below, the problem is apparently the button's "tintcolor" is messing with the original image. If i set the "tintcolor" to red my active button looks like a bigger red circle, if its "clearcolor" it doesn't show. Any help would be much appreciated guys.

Normal State

Selected State

UIImage *image = [UIImage imageNamed:@"red-selected"];

[button setImage:image];

I even tried:

UIImage *image = [[UIImage imageNamed:@"red-selected"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

1

There are 1 best solutions below

0
On
 [btn setImage:@"red-selected.png" forState:UIControlStateNormal];

you can also do it in the interface builder - indicates a photo for selected mode.

pay attention the type of the photo- is it png? try @"red-selected.png"/ @"red-selected.jpg"