4
votes

My app, built only for iPhone, doesn't show Icon correctly in new iPad, which has retina display. While installing the app, app Icon is displayed correctly. But After finishing installation, the app's launch image is displayed as the Icon, not the Icon image. Since it's not the universal app, there seems to have no place to configure something for iPad device in Xcode.

In iPhones including 3Gs, 4, and 4S, and old iPads, I don't have this problem.

2
which version of xcode did you use ? i mean which sdk ?Appz Venture
What are the names of the icon and launch image files?pasawaya
I'm using Xcode 4.4.1 and build target is > iOS 5.0. names of icons are Icon.png and [email protected] and the names of launch images are Default.png and [email protected]. It is necessary to include icon images for iPad, named like Icon-72 and Icon-72@2x, even if the app is not built as universal?minorblend

2 Answers

4
votes

I found what I've done incorrectly by chance. In app info plist file, Default.png and [email protected] was added to "Icon Files" entry. I don't know why. I guess I've manipulated Xcode oddly before.

1
votes

From Apple Docs on Application Icons:

If you’re creating a universal application, you need to supply application icons in all four sizes.

For iPhone and iPod touch both of these sizes are required:

For iPad, both of these sizes are required:

And to keep simple, you should use the recommend names for each icon. Take a look at How are the icon files in my application bundle used on iPad and iPhone?

The following screenshot was taken from pinch multimedia iOS 5 icon sizes. enter image description here