Reputation: 4550
How to specify icons for a universal iPhone/iPad app with all 4 versions (icon.png, [email protected] ... etc)?
Upvotes: 2
Views: 1642
Reputation: 1468
I think you can create app icon set in images.xcassets and that will save a lot of time
Upvotes: 0
Reputation: 1460
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.
Upvotes: 4
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
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
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