I created a tab bar on a storyboard view in xCode. I set the individual images to the correct icons. (folder image, briefcase image, person image, question mark image).
Only the briefcase image shows. I have 3 images that disappear in the simulator.
I have both set it in storyboard and in code.
[_barItem1 setFinishedSelectedImage:[UIImage imageNamed:@"folder.png"]
withFinishedUnselectedImage:[UIImage imageNamed:@"folder.png"]];
I have tried swapping the images to different locations and only the briefcase image ever appears. I have also tried making the images 30x30 px and that does not change the outcome. I have quadruple checked spelling and case-sensitivity.
The images are all included in the project.