Custom uinavigatonbar exception
问题 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? 回答1: I don't think that's possible with