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.
UIImage *image = [UIImage imageNamed:@"red-selected"];
[button setImage:image];
I even tried:
UIImage *image = [[UIImage imageNamed:@"red-selected"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
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"