I'm working on making an application iOS7-compatible, and I'm encountering a problem with UINavigationBar that's driving me crazy:
I want to make my navigationBar totally transparent, without any blur or backgroundPicture, but containing and displaying navigationItem buttons.
In iOS6, I used to make that this way:
UIImage *maskedImage = [UIImage imageNamed:@"transparent_image.png"]
[navigationBar setBackgroundImage:maskedImage forBarMetrics:UIBarMetricsDefault];
But it doesn't work anymore on iOS7.
Any suggestions ?