There seems to be a bug in the UIAppearance protocol on iOS 7. I found that people have (other) problems when using UIAppearance . I used something like:
[[UINavigationBar appearance] setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
which works on iOS 5, but for iOS 6+ I set the background image directly in the navigation bar:
[self.navigationController.navigationBar setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
It seems like a little difference, but it fixed my problem.
source share