Skip to content

Instantly share code, notes, and snippets.

@darkseed
Created August 7, 2011 20:45
Show Gist options
  • Save darkseed/1130771 to your computer and use it in GitHub Desktop.
Save darkseed/1130771 to your computer and use it in GitHub Desktop.
UITabbar with background
- (void)viewDidLoad {
[super viewDidLoad];
CGRect frame = CGRectMake(0, 0, 480, 49);
UIView *v = [[UIView alloc] initWithFrame:frame];
UIImage *i = [UIImage imageNamed:@"GO-21-TabBarColorx49.png"];
UIColor *c = [[UIColor alloc] initWithPatternImage:i];
v.backgroundColor = c;
[c release];
[[self tabBar] addSubview:v];
[v release];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment