I read from http://www.apple.com/iphone/specs.html that IPhone4's screen is 960-by-640-pixel resolution at 326 ppi.

But in Xcode's IPhone4.3 simulator, when I manipulate the display objects, print the [UIScreen mainScreen].applicationFrame, it is 320*480.

So if I wanna use a picture as the main screen's background of my app, which size I should use? 640*960 or 320*480?

Or Which kind of images should I use ? The size of images can affect the details a lot.

link|improve this question
feedback

3 Answers

up vote 3 down vote accepted

You can use both.

If you want to develop apps to Retina Display (iPhone 4), then you should use image with double resolution (640x960), then, when you create your UIImageView, you divide the size by 2.

CGRect rect = imageView.frame;
rect.size.width /= 2;
rect.size.height /= 2; 
imageView.frame = rect;

Also, you have the option to have a image with @2x on its name, for example myimage@2x.png (640x960). In this case, you don't need to divide the size. Using this way:

UIImage * img = [UIImage imageNamed:@"myimage.png"];

Your img var has already divided the size, and if you deploy to iPhone4 it has Retina Display resolution.

link|improve this answer
feedback

You should create two images for the same background.

1st Image = background.png dimensions = 320x480
2nd Image = background@2x.png dimensions = 640x960

The iphone will automatically use the "@2x" image with the retina display.

Tip: when creating this image, create the image as 640x960 and then just resize it by half when done.

Note: this works the same for ALL images. Button, images, backgrounds etc..

link|improve this answer
Thanks. And I also want to know if the IPhone use retina display, when I want to move some UIView Object, which coordinate system should I use ? – Matt.Z Jul 5 '11 at 2:24
feedback

You should usually include both. If your 320x480 graphic is called myimage.png, then your 640x960 graphic should be myimage@2x.png. When you use +[UIImage imageNamed:], iOS will automatically pick the right one for the current device. Read Supporting High-Resolution Screens for more information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.