Reputation: 38960
I have a 120x120 icon image that's working fine on emulators - however when I try it on my device, the icon doesn't show up. Any thoughts?
Upvotes: 8
Views: 7823
Reputation: 38960
I figured it out. This was actually really annoying. So the UI designer had simply renamed his .psd files with .png and xcode thought this was fine. However, renaming the .pngs isn't going to automatically make them real .pngs. The way I solved this was going to mac preview and exporting the files to the PNG format.
Upvotes: 12
Reputation: 6540
It is not uncommon not to see your app icon on the device. However, when your app is being uploaded to the App Store, everything will be fine.
Is your iOS device running iOS7? If not, you will need to include 57x57 and 114x114 icons as well. See https://stackoverflow.com/a/18737063/1646862 for icon sizes apple requires. It is always good to include all icon sizes you may need in your iOS bundle.
Upvotes: 2
Reputation: 51951
Drag your app over another app to group both into a folder. Then drag the app out of the folder.
Upvotes: 3
Reputation:
Check your info.plist file. Make sure the icon entry looks something like this (use your own image file names of course):
If you see another "Icon already includes gloss effects" row outside, remove it.
Upvotes: 2
Reputation: 4204
Sometimes some of the images get cached by the OS.
You should be able to see your icon as long as its properly added to your project.
Upvotes: 11