views:

419

answers:

1

Xcode automatically resizes and applies a glossy look to images added as the application icon. However, I've seen some apps without the glossy finish. How do I disable the glossy icon look? Thanks!

+4  A: 

add UIPrerenderedIcon (type = Boolean, value = true or checked) to your application .plist file.

marcc
Thanks! Here is the code for anyone who needs it. <key>UIPrerenderedIcon</key> <true/>
Jonah