How to customize tab bar button and tab bar selected color?
I want customize tab bar..Not a gray color..How to customize tab bar ? How to cha开发者_Go百科nge tab bar selected background color (default: blue color)?
You either use private APIs, which will cause your app to be rejected from the App Store or you write your own tab bar control.
Try This in your app deletegate.m file
[[UITabBar appearance] setSelectedImageTintColor:[UIColor redColor]];
精彩评论