I am developing an application for iPhone to support multiple devices, iPhone 2-4. I had an issue with the app icon as it was shown pixelated in the iPhone 4 simulat
For older devices, save your 57x57 icon as Icon.png
. For the iPhone 4, save your 114x114 icon as Icon@2x.png
. The image resolution doesn't matter at all; only the pixel dimensions matter.
There are other sizes to cater to, like Spotlight/Settings icons and iPad icons. There's a full list written up in the library documentation.
Make sure that "Icon.png" and "Icon@2x.png" are capitalized or else the application archive will not pass the validation process.
Red,
Please follow these guidelines: http://developer.apple.com/iphone/library/documentation/userexperience/conceptual/mobilehig/IconsImages/IconsImages.html
I have not seen the pixelated issue on the iOS4 simulator like you did using an app that was originally written for iOS3+ with a standard 57x57 icon.
Ive put all the images named correctly at the correct size into a github repo, so there can be no confusion.
https://github.com/FattusMannus/iOS-Development-Image-Placeholders
Just download them as a zip, edit them and copy them into your project
AH
As the iOS device range got a whole lot more complicated in recent years, here is a current list of icons and their requirements for each platform:
Both of these sizes are required:
120px x 120px
60px x 60px (standard resolution)
Both of these sizes are required:
152px x 152px
76px x 76px (standard resolution)
Create a large version of your app icon in two sizes so that it looks good on all devices:
1024px x 1024px
512px x 512px (standard resolution)
//Be sure to name this version of your app icon iTunesArtwork@2x and iTunesArtwork, respectively.
Create an icon in the following two sizes:
80px x 80px
40px x 40px (standard resolution)
Create an icon in the following two sizes:
58px x 58px
29px x 29px (standard resolution)
Image(px) File Name Used For Required Status
512x512 iTunesArtwork Ad Hoc iTunes Optional
1024x1024 iTunesArtwork@2x Ad Hoc iTunes HiRes Optional
57x57 Icon.png App Store and Home screen Required
114x114 Icon@2x.png Home screen iPhone 4/5 Optional
72x72 Icon-72.png Home screen (iPad compatibility) Optional
29x29 Icon-Small.png Spotlight and Settings Optional
50x50 Icon-Small-50.png Spotlight (iPad compatibility) Recommended(/wSB)
58x58 Icon-Small@2x.png Spotlight and Settings iPhone 4/5 Recommended(/wSB)
Image(px) File Name Used For Required Status
512x512 iTunesArtwork Ad Hoc iTunes Optional
1024x1024 iTunesArtwork@2x Ad Hoc iTunes HiRes Optional
72x72 Icon-72.png App Store and Home screen iPad Required
144x144 Icon-72@2x.png App Store and Home screen HiRes Optional
50x50 Icon-Small-50.png Spotlight on iPad Optional
29x29 Icon-Small.png Settings on iPad Recommended(/wSB)
Image(px) File Name Used For Required Status
512x512 iTunesArtwork Ad Hoc iTunes Optional
1024x1024 iTunesArtwork@2x Ad Hoc iTunes HiRes Optional
57x57 Icon.png App Store and Home screen Required
114x114 Icon@2x.png Home screen iPhone 4/5 Optional
72x72 Icon-72.png App Store and Home screen iPad Required
144x144 Icon-72@2x.png App Store and Home screen HiRes Optional
29x29 Icon-Small.png Spotlight and Settings Optional
50x50 Icon-Small-50.png Spotlight iPad Recommended(/wSB)
58x58 Icon-Small@2x.png Spotlight and Settings iPhone 4/5 Recommended(/wSB)
*(/wSB) = Recommended if you have a Settings bundle, otherwise optional but recommended
You can set the various icon image names in the plist, under "icon files".