Rose Perrone
Rose Perrone

Reputation: 63586

App icon doesn't appear

I followed these instructions to add my app's icon. Specifically, I created a png named Icon.png, I added the following items to my AppName-Info.plist file, and I cleaned the project. Yet I still see the default icon Apple provides.

enter image description here

Upvotes: 0

Views: 3187

Answers (4)

Adrian
Adrian

Reputation: 253

Delete the app, then close the simulator and run the app again. That worked for me.

Upvotes: 0

rymagno
rymagno

Reputation: 458

Xcode may have forgotten to add them to your Bundle Resources. Got to your project settings -> Targets -> Build Phase -> expand Copy Bundle Resources.

If you don't see all the Icon png files in there, drag them from your Project Navigator on the left to the Copy Bundle Resources window. It should work after doing that.

Upvotes: 2

roguequery
roguequery

Reputation: 974

Might also want to check if they exist in the project directory, and if they don't show up in xcode, go to File>Add Files to "Your Project" and make sure the Copy items is checked. Otherwise, just a breakable link will map the asset to your project.

Upvotes: 0

noobzilla
noobzilla

Reputation: 1155

Rose - That looks ok. Couple places to look/items to try:

  1. You did in fact copy all of the icon files into your project as well, correct?
  2. Try removing these entries from your plist and adding them in by dragging the icons to the App icons area on your Target > Summary page.

Upvotes: 1

Related Questions