Reputation: 99
I put in my project a png file for the icon. I respect the dimensions (72x72) and my icon does not appear in my home screen. I still have the white icon by default... It is named icon.png , the name is right ? The weird thing is the icon appear on my simulator but not in my device
Can anyone help me ?
Thank you
Upvotes: 1
Views: 621
Reputation: 11914
You can name it whatever you want; but you need to set the icon in your plist file. The CFBundleIconFile key ("Icon File"). Set that equal to the name of your image. If your icon shows up on your simulator, but not your device, make sure you do a clean build.
Upvotes: 1
Reputation: 170849
The default name for application icon is Icon.png
(not the 1st letter is uppercase - ios filesystem is case-sensitive). However you can specify any other name for application icon in info.plist file - check Icon File
key.
Upvotes: 0