When I select t UIColor for the UIImage hue in the UITabBar properties, nothing changes, only the blue color is displayed by default. I need to call
[[UITabBar appearance] setSelectedImageTintColor:[UIColor colorWithRed:255.0/255.0 green:150.0/255.0 blue:10.0/255.0 alpha:1.0]];
but it is not called when the application starts, so the icon is initially blue and changes color a second time (even if put in viewWillAppear ).
I use UIStoryboard as a startup screen file, which has a UITabBarController inside.
Any ideas? Was hue selection in xcode 6 working through UIInterfaceBuilder ?
thanks
source share