Try installing UIBarButtonItem as follows in ios7: -
UIImage *temp = [[UIImage imageNamed:@"theImage"] imageWithRenderingMode: UIImageRenderingModeAlwaysOriginal]; UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithImage:temp style:UIBarButtonItemStyleBordered target:self action:@selector(action)];
Here is the original post in apple dev center discussion forums
To support both version iOS7 and below, you check the system-version and install the code as follows: -
UIImage *temp=nil; if([[[UIDevice currentDevice] systemVersion] floatValue] < 7.0) { temp = [UIImage imageNamed:@"btn-back.png"]; } else { temp = [[UIImage imageNamed:@"btn-back.png"] imageWithRenderingMode: UIImageRenderingModeAlwaysOriginal]; }
Nitin Gohel Sep 20 '13 at 9:15 2013-09-20 09:15
source share