UIBarButtonItem with UIImage Always Tinted iOS 7
I spent an evening trying to figure this out as well. You were very close to the solution. The trick is to instantiate the UIImage with the rendering mode. Instead of doing: UIImage *image = [UIImage imageNamed:@”myImage.png”]; image = [image imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]; do this: UIImage *image = [[UIImage imageNamed:@”myImage.png”] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]; and it works! In my case, … Read more