vote up 4 vote down star
1

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!

flag

Duplicate of stackoverflow.com/questions/1003177/… (actually the linked version came later, but I think it has the better answer with the screen cap). – Lawrence Johnston Jul 17 at 23:06

2 Answers

vote up 6 vote down check

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.)

link|flag
vote up 4 vote down

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

    <key>UIPrerenderedIcon</key>
    <true/>
link|flag
Thanks for writing that down as its an intuitive way to describe a boolean – Robert Gould Oct 25 '08 at 16:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.