I am currently trying to remove the gloss effect from an iOS icon using XCode 4.
I have set the 'Icon already includes gloss effect' (UIPrerenderedIcon) property to YES/true.
The gloss effect is successfully removed from the icon when i run my app through the iPhone 5.0 simulator.
However, the gloss effect is still visible when I run the app through the iPhone 4.3 simulator.
Can anyone tell me how to disable the gloss effect in both iOS versions?
My info.plist file reads as follows
<key>CFBundleIconFiles</key>
<array>
<string>Icon.png</string>
<string>Icon@2x.png</string>
<string>Icon-72.png</string>
</array>
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>Icon.png</string>
<string>Icon@2x.png</string>
<string>Icon-72.png</string>
</array>
<key>UIPrerenderedIcon</key>
<true/>
</dict>
</dict>