tags:

views:

251

answers:

1

When you define an icon for your app in XCode and then run it in the simulator or on a real device, the icon is automatically trimmed so it has rounded edges and a 'glossy' sheen is applied over top of the icon. I'd like to get rid of that sheen since it's obscuring some of the detail in my icon. It seems like some other apps are able to accomplish this... anyone know how it's done?

+6  A: 

Add this key/value pair to your Info.plist file:

<key>UIPrerenderedIcon</key>
<true/>
James Skidmore