I want to display an image to my users which is larger than the screen area and will overscroll to let the users drag it around and zoom in.

Do I need different images with different dpi for iPhone 4 users because of the higher resolution?

Or can I just set the zoom level differently depending on device?

link|improve this question

80% accept rate
please accept my answer if it was sufficient in answering your question. – Jacob Relkin Aug 13 '10 at 5:29
feedback

1 Answer

up vote 2 down vote accepted

Yes, you need to use different images. iOS 4 will automatically detect a higher-res image if you name it with a @2x suffix. e.g. image.png => image@2x.png

https://developer.apple.com/iphone/prerelease/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/SupportingResolutionIndependence/SupportingResolutionIndependence.html

(You must be a Registered iPhone Developer in order to see this document)

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.