I've made a custom uinavigation bar this way:
@implementation UINavigationBar (UINavigationBarCategory)
- (void)drawRect:(CGRect)rect {
UIImage *img = [UIImage imageNamed: @"navigation_background.png"];
[img drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}
@end
Now I'd like to add exception to show the normal uinavigation bar when i load an specific viewcontroller into de navigationcontroller.
How can I code that exception?