Skip to content

Instantly share code, notes, and snippets.

@tjboudreaux
Created February 2, 2011 03:42
Show Gist options
  • Select an option

  • Save tjboudreaux/807206 to your computer and use it in GitHub Desktop.

Select an option

Save tjboudreaux/807206 to your computer and use it in GitHub Desktop.
Apply a Background Image to UINavigationBar.
@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