Alex G
Alex G

Reputation: 2309

Does the iPhone 5's screen require separate versions of my app's images?

I have a graphic designer that creates images and things like that for me. Do I need give him separate image sizes to be created specifically for iPhone 5, or do I build like I used to for the 3.5 inch screen? Will the images be resized automatically?

Upvotes: 2

Views: 388

Answers (3)

Jack Humphries
Jack Humphries

Reputation: 13267

No iOS devices with a retina display can run iOS 3. You will need high resolution versions of all your pictures.

As for converting photos to work with the iPhone 5, it depends on the photo and how it's used. If the image is used as part of the background, you have two options: you can tile it, which would not require new pictures, or you will have to redesign it altogether.

As for the other pictures, whether you can work with the same ones (same size or resized) or need new ones depends on user interface decisions only you can make. If an image must retain a certain ratio, then perhaps you can resize it and place it accordingly, or maybe an entire new image would work better.

Upvotes: 2

Gabriele Petronella
Gabriele Petronella

Reputation: 108101

You have to provide specific files if your images are dependent on the screen ratio.

In order to conditionally use an image according to the device you can use the technique shown here.

If that's not the case, simply provide the same images and adjust the layout programmatically or within Interface Builder.

Upvotes: 2

Popeye
Popeye

Reputation: 12093

Here is one link that may help you.

Naming convention for iPhone 5 images?

and heres another

Screen size of iphone 5

Reviewing these links basically evaluates to yes you have to create separate images for iPhone 5 you will need to add [email protected] to the end of each image that is for iPhone 5. You need to also create and set the launch image as well called [email protected] are it will not pick anything up for the iPhone 5.

No it will not resize the images automatically it will select the correct image to use, it will select the one with the [email protected] simple as that.

Hope this helps.

Upvotes: 5

Related Questions