Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you override the Icon for iphone apps?

Tags:

icons

iphone

I remember reading somewhere that you can provide your own icons without having them pass them through the automatic gloss effect when compiling an iphone app, but I can't remember how to do it, and not sure where it was in the docs. Anyone here remembers?

thanks!

like image 981
Robert Gould Avatar asked Dec 31 '22 08:12

Robert Gould


2 Answers

Add the "UIPrerenderedIcon" to your info.plist file, change it to be a boolean and make it true. (In 2.0 of the iPhone OS you could also leave it as a string and use YES or NO, but that no longer works in 2.1.)

like image 75
Stephen Darlington Avatar answered Jan 15 '23 07:01

Stephen Darlington


Stephen is correct. The exact syntax that works in 2.1 is:

    <key>UIPrerenderedIcon</key>
    <true/>
like image 41
Ben Gottlieb Avatar answered Jan 15 '23 08:01

Ben Gottlieb