vote up 0 vote down star
1

When you are using Xcode to make an iPhone app, how do you change the app's icon? Right now my icon for my app is just plain white.

flag

0% accept rate

2 Answers

vote up 1 vote down

If you don't specify the icon in the Info.plist file, then Xcode assumes that a file named "icon.png" in your resources folder is the icon for the application.

link|flag
vote up 4 vote down

Create a 57x57 PNG file and import it into your project bundle. Then open the .plist file that is included in your project and edit the value for the key "Icon File" to match the name of the icon you provided (CFBundleIconFile is the actual key, but the Xcode editor will display the nicer name for you).

link|flag
Thanks! Im new to Xcode so I'm not too good at it ): – Aidan Aug 23 at 0:40
Anytime. You might want to look over Apple's developer documentation at developer.apple.com/iphone - they have a wealth of information about working with Xcode and deploying iPhone applications. – Tim Aug 23 at 0:42
Ok I'll try that. Thanks. – Aidan Aug 23 at 2:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.