In my AppDelegate I use UIAppearance to set my own NavigationBar with this code :
[[UINavigationBar appearance] setTintColor:[UIColor blackColor]];
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"nav5.png"] forBarMetrics:UIBarMetricsDefault];
But some views of my application don't need it. How can I get rid of it so I may only use IB in concerned views ?
nil
does indeed set the styles back to the default. Tested. – Wymore