Created
December 10, 2013 08:25
-
-
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.
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
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