I'm trying to display an image in a UIImageView only in the first launch of the app. So after using NSUserDefaults to detect that successfully I try to load an image called firstLaunch.png in the MainViewController.
I created the UIImageView IBOutlet and connected and everything works fine but the image DOESN'T load. Though later somewhere else in my code I can update the UIImageView successfully. Here is my line where I try to load the image to the UIImageView:
[countDownImage setImage:[UIImage imageWithContentsOfFile:@"firstLaunch.png"]];