0

I am aware there are similar answers on this topic, but I cant seem to come to any conclusion. I'm using IOS 8 and a tab bar created in app delegate. Is there a way to set the selected tab bar item to a certain colour. preferably without using an image. id like to replicate this if possible

Luke
  • 55
  • 8

1 Answers1

0
[[UITabBar appearance] setTintColor:[UIColor myBlueishColor]];
[[UITabBar appearance] setSelectedImageTintColor:[UIColor myBlueishColor]];

You may find more related information here: http://jslim.net/blog/2014/05/05/ios-customize-uitabbar-appearance/

Hermann Klecker
  • 14,039
  • 5
  • 48
  • 71