ios - Custom tab bar icon colors -
im using xcode 5 develop list oriented app. have custom tint tab bar, custom images tab icons, custom tint tab bar's icon images when selected, cannot find how customize icon images' tint when not selected. right default gray can barely see in contrast green tab bar. want make tab bar icons' images , names white.
does know how set tab bar icons' image tint in xcode 5?
you can try tint selected icon :
// custom tab bar [[uitabbar appearance] setselectedimagetintcolor:[uicolor whitecolor]];
and tint non active icon :
[self.tabbaritem setfinishedselectedimage:[uiimage imagenamed:@"item_seleted.png"] withfinishedunselectedimage:[uiimage imagenamed:@"item_unselected.png"]];
Comments
Post a Comment