High resolution/retina display app icon file names for the new iPad

38,367

Solution 1

Here and here is the right documentation. Basically, you add new icons with the suffix @2x and with double size as the documentation says:

For apps that run on devices with Retina displays, two versions of each icon should be provided, with the second one being a high-resolution version of the original. The names of the two icons should be the same except for the inclusion of the string @2x in the filename of the high-resolution image.

Solution 2

One thing you need to know is that the dimension of retina images will be double to that of regular imagesand for retina you should be use naming conventionwith @2x

example-iPhone app icon (for regular)icon.png (57*57) (for retina)[email protected](114*114)

iPad app icon size 72*72 (for regular) 144*144(for retina) and naming convention should be with @2x for retina. Hope this might be helpfull for you. Thanks

Solution 3

This is from the docs linked above. I am exporting SVG's and need a way to separate the icons by function, so I'm using the older name method. Use the chart like this, whatever's on the left, append .png. To do retina, double the numbers and do the usual. Apple didn't put the names with the images, and while this is not exhaustive, it should be enough for most uses. Double-check for future and I may have even messed up on current, so don't take this as a final word.

Universal apps need to append ~iphone or ~ipad to the end of the string for disambiguation to avoid collision. This is not required if nothing conflicts, it seems from the docs. Name (add .png to it) - base res width x height.

Launch Images:
iPhone:
Default - 320x480
Default-568h - 640x1136 (only @2x, do not double this number)
iPad
Default - 768x1024 (portrait)
Default-Landscape - 1024x768 (multiple orientations supported in iPad, see document)

App Icon:
iPhone
Icon - 57x57
iPad
Icon-72 - 72x72

Search Result Icon (Spotlight)
Icon-Small - 29x29 (also used on all device Settings)
Icon-Small-50 - 50x50 (Search results on iPad)

iTunes Art
iTunesArtwork  - 512x512

From Docs Here

edit: The reason I posted this chart is for ease of use. Apple put the icon names far away from their resolution in that paper.

Share:
38,367

Related videos on Youtube

Matt Elkins
Author by

Matt Elkins

Updated on July 24, 2022

Comments

  • Matt Elkins
    Matt Elkins almost 2 years

    Does anyone know the correct file names for high resolution app icons in iOS? I've only been able to find the following documentation on the Apple Developer site, which is unfortunately out of date - http://developer.apple.com/library/ios/#qa/qa1686/_index.html.

    This is my best guess... although I'm fairly sure I'm wrong!

    App - 144px x 144px - [email protected]  
    Spotlight - 100px x 100px - [email protected]  
    Settings - 58px x 58px - [email protected]
    

    Any suggestions would be greatly appreciated!

    • Stephen J
      Stephen J over 10 years
      Now the question is, can Apple put the px resolutions and their names on one page, so we don't have to go back and forth trying to match them! Heh... time to do some extra work on this one...
  • Matt Elkins
    Matt Elkins over 12 years
    Thanks for your reply! I've come across both of those pages in the documentation before, and although they provide the pixel dimensions, there is no specific content describing how the icon files should be named. However, based on your examples above, would the guesses I made in my original post be correct?
  • Matt Elkins
    Matt Elkins over 12 years
    I've just read this page again, and I think this pretty much confirms it: "The names of the two icons should be the same except for the inclusion of the string @2x in the filename of the high-resolution image.". Thanks again for your reply!