Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save tjboudreaux/807202 to your computer and use it in GitHub Desktop.
Custom UITabBar Background
@implementation UITabBar (CustomImage)
- (void)drawRect:(CGRect)rect{
[super drawRect:rect];
UIImage *image = [UIImage imageNamed:@"TabBar.png"];
[image drawInRect:rect];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment