Reputation: 347
I know that in order to disable any gloss effect on my icon, on the device and on the Appstore (512x512), I have to set in my Info.plist
file:
Icon already includes glossary effect: YES
But I have read here, that there is something called : UIPrerenderedIcon
that i couldn't find.
Is the first boolean in the plist file which I mentioned above good enough or do I need both?
Upvotes: 0
Views: 361
Reputation: 10329
UIPrerenderedIcon
and Icon already includes glossary effect
are one and the same. The Icon already includes glossary effect
is the readable representation of UIPrerenderedIcon
by the Plist editor included in XCode.
To know for sure, right click on you plist file
> Open As
> Source Code
and you'll see the names of all the values set. Amongst them you'll find UIPrerenderedIcon
.
Upvotes: 1
Reputation: 2216
Setting YES
on UIPrerenderedIcon
should disable the gloss effect on your icon.
Upvotes: 0