Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where do I set the application icon in an iphone app

I wrote an app for iphone. All is working. I see it in an ipod. I have done all the testings and thanks to you guys I was able to resolve all my issues so far. Where do I set my application icon? I know it is in info.plist. But how do I change it? Thanks Saro

like image 562
Saro Khatchatourian Avatar asked Jun 27 '11 14:06

Saro Khatchatourian


People also ask

Where do you customize the application icon?

Press and hold the app icon until a popup appears. Select “Edit”. The following popup window shows you the app icon as well as the application's name (which you can also change here). To choose a different icon, tap on the app icon.

Where do I put app icons iOS?

Drag an icon to the “App Store iOS” well and the “Messages App Store” well. Drag an icon to the “App Store - 2x” well. Drag the front, middle, and back icons to the “App Icon - App Store” set in the App Icon & Top Shelf Image folder. For the iOS target, drag an icon to the “App Store iOS” well.

How do I add an icon to my apps?

Touch and hold an app or shortcut. Drag that app or shortcut on top of another. Lift your finger. To add more, drag each one on top of the group.


1 Answers

This is what I have in my Info.plist for the icons of all supported devices (ipod, iphone, retina display, ipad):

Info.plist

The @2x files refer to retina display. The -72 refer to ipad.

EDIT:

This is the textual representation of the list above in my info.plist file:

<key>Icon files</key> <array>     <string>Icon.png</string>     <string>[email protected]</string>     <string>Icon-72.png</string>     <string>Icon-Small-50.png</string>     <string>Icon-Small.png</string>     <string>[email protected]</string> </array> 

XCode 4 EDIT;

As of Xcode 4, the best way to set the icons for your app is to access the Summary pane of your target settings, as displayed in the image below, and drag-drop the icons on the available controls (separately for iPhone and iPad, retina and non-retina).

enter image description here

like image 110
sergio Avatar answered Oct 23 '22 15:10

sergio