Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Having problems adding icon in Xcode

Tags:

xcode

How do I add an app icon on xcode? I tried using an image from google saved it onto my desktop and carry dropped it on the app icon, however this didn't work.

like image 366
Carlos Avatar asked Nov 29 '13 16:11

Carlos


1 Answers

The icon is obviously used for the home screen, and the launch image is displayed when the app loads. Because you need to provide support for both Retina Display (4 and higher) and standard (3GS and lower), the files should be according the following specifications:

  • Standard icon 57 × 57, named Icon.png
  • Retina Display icon 114 × 114, named [email protected]
  • Standard launch image 320 × 480, named Default.png
  • Retina Display launch image 640 × 960, named [email protected]

After you have these created according these standard size and naming conventions, replace the canned files that PhoneGap already added by overwriting them in your project folder.

like image 177
Fatty Avatar answered Nov 12 '22 19:11

Fatty