Skip to content

Instantly share code, notes, and snippets.

@MengTo
Created December 10, 2013 08:25
Show Gist options
  • Save MengTo/7887323 to your computer and use it in GitHub Desktop.
Save MengTo/7887323 to your computer and use it in GitHub Desktop.
The TabBar images are tinted by default. This is a way to use original images.
UITabBarController *tabBarView = (UITabBarController *)self.window.rootViewController;
UITabBarItem *item0 = [tabBarView.tabBar.items objectAtIndex:0];
item0.image = [[UIImage imageNamed:@"icon-chat"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
item0.selectedImage = [UIImage imageNamed:@"myImage"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment