How to set corresponding MYimage.png for MyimageView in Xcode 6 with ios 8.x compatiblity.
MyimageView setImage:[UIImage imageNamed:@"MYimage.png"];
In Resources, I am having the following images with resolutions:
MYimage.png--320*480
[email protected]*960
[email protected]*1136
[email protected]*1334
[email protected]*2208
For iPhone 4s,it shows: [email protected] [Right]
For iPhone 5s,it shows: [email protected] [wrong]
For iPhone 6,it shows: [email protected] [wrong]
For iPhone 6+,it shows: [email protected] [wrong]
But after renaming the images as mentioned below:
MYimage.png--320*480
[email protected]*960
[email protected]*1136
[email protected]*1334
[email protected]*2208
For iPhone 4s,it shows: [email protected] [Right]
For iPhone 5s,it shows: [email protected] [wrong]
For iPhone 6,it shows: [email protected] [wrong]
For iPhone 6+,it shows: [email protected] [Right]
So., What's the stated format to implement?
Note: Also googled following Links and so on..