When i create an image for an ImageView to iPhone, iPhone retina, iPad, iPad retina, should i create 4 images ?
For example for a coin image that i use ->
- coin.png
- coin@2x.png
- coinIpad.png
- coinIpad@2x.png
Can i create just the most-size image (imageIpad@2x.png) and inside Xcode select Aspect Fit ?
[UIImage imageNamed:@"imageIpad@2x.png"];
Which is the common way to do this?