Skip to content

Instantly share code, notes, and snippets.

@jkongie
Created August 14, 2010 07:49
Show Gist options
  • Save jkongie/524108 to your computer and use it in GitHub Desktop.
Save jkongie/524108 to your computer and use it in GitHub Desktop.
@implementation UINavigationBar (CustomImage)
- (void)drawRect:(CGRect)rect {
UIImage *image = [UIImage imageNamed: @"NavigationBar.png"];
[image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment