Created
February 2, 2011 03:38
-
-
Save tjboudreaux/807202 to your computer and use it in GitHub Desktop.
Custom UITabBar Background
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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