2

I want customize tab bar..Not a gray color..How to customize tab bar ? How to change tab bar selected background color (default: blue color)?

user412919
  • 31
  • 1
  • 3

2 Answers2

5

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.

Jasarien
  • 58,279
  • 31
  • 157
  • 188
3

Try This in your app deletegate.m file

[[UITabBar appearance] setSelectedImageTintColor:[UIColor redColor]];
Lightman
  • 61
  • 2