2

How to disable all icon effects, including gloss effect, on iphone/ipad for my application? Both on old iOS and on iOS 5.

UPDATED:

Should I add set property UIPrerenderedIcon two times - for old iOS and for iOS 5 as the child of iOS 5 tree?

enter image description here

Thanks for the help!

Dmitry
  • 14,306
  • 23
  • 105
  • 189
  • Please be more specific. What icon effects do you mean? – foebe Dec 26 '11 at 11:55
  • [The answer you seek is in this duplicate question](http://stackoverflow.com/questions/1003177/how-to-disable-highlighting-of-the-app-icon). – Michael Dautermann Dec 26 '11 at 11:56
  • Already answered on stackoverflow : [removing-shine-gloss-effect-on-the-iphone-through-uiprerenderedicon-not-working][1] [1]: http://stackoverflow.com/questions/2958920/removing-shine-gloss-effect-on-the-iphone-through-uiprerenderedicon-not-working – Tom Dec 26 '11 at 11:57
  • Please view the question again. – Dmitry Dec 26 '11 at 12:09
  • It's not duplicate - please look again to the question. And different text in the same question is very useful. – Dmitry Dec 26 '11 at 19:35
  • That image is the best answer, you have to set the "Icon already includes gloss effects" to YES in two places. Once within the Icon Files (iOS 5) -> Primary Icon directory as well as the outside plist directory – djblue2009 Feb 01 '12 at 01:55

2 Answers2

3

go in plist file and and click on + sign then search for,

Icon already includes gloss effects = YES;

Hardik Shah
  • 1,683
  • 1
  • 11
  • 20
0

You need to add another "Icon already includes gloss effects = YES" under "Icon Files (iOS 5)/Primary Icon"

Cliff Harris
  • 754
  • 2
  • 7
  • 9