smartsanja
smartsanja

Reputation: 4550

How to specify icons for a universal iPhone/iPad app?

How to specify icons for a universal iPhone/iPad app with all 4 versions (icon.png, [email protected] ... etc)?

Upvotes: 2

Views: 1642

Answers (5)

RayChen
RayChen

Reputation: 1468

image assets appicon

I think you can create app icon set in images.xcassets and that will save a lot of time

Upvotes: 0

8suhas
8suhas

Reputation: 1460

enter image description here

I have live universal app on app store. Refer attached image for the image names.

Icon-Small is used in Settings app, Icon is shown in iPhone Home screen and Icon-72 is shown in iPad Home screen.

Refer second image for the image sizes.

enter image description here

Upvotes: 4

Ravi Sharma
Ravi Sharma

Reputation: 975

First you have to declare App Launcher icon images

Device      size                   retina display size
iphone     57*57  (icon.png)         114*114 (icon@2x)
iPad        72*72                    144*144

Launch Image size
Device      size        retina display size
iphone     320*480           640*960
iphone 5    640*1136 
iPad        768*1024         1536*2048

And to specifies your icons go to the Target then summary then you browse icon (manually) for all the device name doesn't matter but name not be same.

Upvotes: 1

Arvind Kanjariya
Arvind Kanjariya

Reputation: 2097

Add a CFBundleIconFiles key of type Array to your Info.plist. The array should contain 2 string items: the filenames of the two icons. The OS will then automatically choose the correct icon for each platform based on their pixel dimensions.

Follow this link FOR UNIVERSAL APP ICON

Upvotes: 0

AppleDelegate
AppleDelegate

Reputation: 4249

Please refer the default icon names..

Iphone(non retina) :icon.png

Iphone(retina) :[email protected]

Ipad(Non retina) :Icon-72.png

IPad(Retina) :[email protected]

Upvotes: 0

Related Questions