Skip to content

Instantly share code, notes, and snippets.

@florieger
Created December 2, 2011 11:49
Show Gist options
  • Save florieger/1422971 to your computer and use it in GitHub Desktop.
Save florieger/1422971 to your computer and use it in GitHub Desktop.
UITabBar Customizing
- (void)customizeTabBar
{
UIImage* tabBarBackground = [UIImage imageNamed:@"tabbar.png"];
[[UITabBar appearance] setBackgroundImage:tabBarBackground];
UIImage* selectionIndicator = [UIImage imageNamed:@"selection-tab.png"];
[[UITabBar appearance] setSelectionIndicatorImage:selectionIndicator];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment