Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would the image resources be named for the ipad & ipad HD versions in a universal app?

When supporting normal and HD images for iphone we use imageName.png & imageName-hd.png. But if I make an universal am I right in assuming that I would have to rename the images and use imageNameiPad.png & imageNameiPad-hd.png?

Please let me know how the naming convention works.

Thanks Abhinav

share|improve this question

4 Answers

up vote 14 down vote accepted

The correct way in cocos2d (version 2.0 or 1.1beta) is this:

Normal iPhone:

image.png

Retina iPhone:

image-hd.png

Normal iPad:

image-ipad.png

Retina iPad:

image-ipadhd.png

You must just call image.png in your code, then the code will detect what device is and use the file properly.

share|improve this answer

I beleive that it goes something like this:

Normal iPhone:

image.png

Retina iPhone:

image.png-hd

Normal iPad:

image.png-ipad

Retina iPad:

image.png-hd-ipad

Do not use @2x instead of -hd because you will find that you will get some errors.

share|improve this answer

Quoted from How to support both iPad and iPhone retina graphics in universal apps

ImageName.png - For iPhone/iPod

ImageName~ipad.png -- For iPad

For devices with retina display:

ImageName@2x~ipad.png -- For iPad

ImageName@2x.png - For iPhone/iPod

share|improve this answer
1  
How about for cocos2d though? – AbhinavVinay Mar 8 '12 at 19:53
Are you that this is not only for the launch images and icons? – AbhinavVinay Mar 8 '12 at 20:01
1  
I would imagine that it would be imagename-hd~iPad.png – 0x7fffffff Mar 8 '12 at 20:03

I guess that'll work exactly as you would name ressource to support retina display on iOS (for iPhone). Which to my mind is :

  • MyFile.png is the standard resolution
  • Myfile@2x.png is the resolution for retina display
share|improve this answer
but how would it differentiate between the one meant for iphone retina and the one meant for ipad retina? – AbhinavVinay Mar 8 '12 at 19:46
Sorry, I misunderstood your demand. – AsTeR Mar 9 '12 at 10:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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