Is there a way to disable UINavigationBar Translucency for an entire application?
I\'m aware that using [self.navigationController.navigationBar setTranslucent
I know this is old, but this might come in handy for someone;
You can use a category, and within it* set the property [translucent][1]
@implementation UINavigationBar (MakeTranslucent)
-(void)willMoveToWindow:(UIWindow *)newWindow {
[super willMoveToWindow:newWindow];
self.translucent = NO;
}
@end