Skip to content

Instantly share code, notes, and snippets.

@sco
Created August 7, 2009 16:27
Show Gist options
  • Select an option

  • Save sco/163995 to your computer and use it in GitHub Desktop.

Select an option

Save sco/163995 to your computer and use it in GitHub Desktop.
#import "UINavigationBar+AFExtensions.h"
@implementation UINavigationBar (AFExtensions)
- (void)drawRect:(CGRect)rect {
[super drawRect:rect];
UIImage *image = [UIImage imageNamed:@"navbackground.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