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
If you create an IBOutlet you can change it in your awakeFromNib method like so...
self.myImageView.image = [self.myImageView.image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
While @Moby's answer is more correct - this might be more succinct.