Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
319 views
in Technique[技术] by (71.8m points)

ios - 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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...