Is it possible to modify a UIImage\'s renderingMode from a storyboard or xib editor?
UIImage
renderingMode
The goal is to apply tintColor to the par
tintColor
You cann't set renderingMode either from storyboard or xib. It could access by programmatically.
storyboard
xib
ex:
UIImage *unSeletedImage = [UIImage imageNamed:@"UnSelected.png"]; selectedImage = [selectedImage imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];