Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When making an iPhone App in Xcode, how do you make an app icon WITHOUT the phone adding the default glass effect glare?

I've seen many apps in the app store who's icons on the iPhone Springboard do not have the default rounded corners and "glass effect" that are created by default when I just add a 57x57 png to my resources and specify it in the plist. Does anyone know how to NOT get the iPhone to add the attributes to my application icon image when I compile and load it on the iPhone?

like image 328
Steve Thompson Avatar asked Oct 30 '09 00:10

Steve Thompson


1 Answers

If you go edit your info.plist file, there is a property called UIPrerenderedIcon, it'll be set to false, if you change it to true, the phone won't process your icon before displaying it. You'll also have to round the corners yourself as well I believe.

take a look at: http://iosdevelopertips.com/general/remove-shine-gloss-effect-on-iphone-icon.html

like image 98
Michael Baldry Avatar answered Sep 23 '22 17:09

Michael Baldry