So I have the following images:
splash1.png (IPHONE 3) [email protected] (IPHONE 4) [email protected] (IPHONE 5)
I want to show the corresponding images in iphone 3, 4, 5.
I tried doing
UIImage * img = [UIImage imageNamed: @"splash1.png"];
self.splashimg.image = img;
[self.splashimg setFrame: CGRectMake(0, 0, img.size.width, img.size.height)];
Where self.splashimg is an imageview that shoes the image img.
but this still shows the iphone 3 image and does not get the iphone 4 or 5 image.
what can I do?
When I look at the app in iphone 5, I see the splash image but the iphone 3 version of it.