After iOS 7.1 update, I can't see the images of the tabBar but if I click on one image it appears. I've the following code to set the images of tabBar items
UINavigationController* myController;
.. //some code here
myController.tabBarItem.image = [UIImage imageNamed:@"someImage.png"];
myController.navigationBar.barTintColor = myColor;
myController.navigationBar.translucent = NO;
//and so on for the remaining controllers, then I add them to the tabBarController
I searched for the problem and I found that I should add selectedImage but it did not work
myController.tabBarItem.selectedImage = [UIImage imageNamed:@"someImage.png"];
Any idea?
I fixed the problem check my answer