Skip to content

Instantly share code, notes, and snippets.

@kishorek
Forked from darkseed/gist:1144990
Created March 27, 2012 09:43
Show Gist options
  • Save kishorek/2214434 to your computer and use it in GitHub Desktop.
Save kishorek/2214434 to your computer and use it in GitHub Desktop.
Custom UINavigation background
@interface UINavigationBar (MyCustomNavBar)
@end
@implementation UINavigationBar (MyCustomNavBar)
- (void) drawRect:(CGRect)rect {
//matching the button color with the bar color
[self setTintColor:[UIColor colorWithRed:0.85f green: 0 blue:0 alpha:1]];
UIImage *barImage = [UIImage imageNamed:@"image.png"];
[barImage drawInRect:rect];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment