I have a problem with the gloss effect in app icon at iOS 5 beta 5, in iOS 4 it's show the effect not gloss, but iOS5 shows the glosss effect. I put the option Icon already includes gloss effects = YES, but simply does not work, and it appears that the application Google+ also has the same problem

thanks

http://cl.ly/0Z2i3r3D0S0t293j3z0t

link|improve this question
It appears that facebook app also have this problem with icon closs. Does anyone have solutions to fix this? Is it a bug iOS5? thanks – ruiaureliano Aug 10 '11 at 18:59
feedback

6 Answers

iOS 5 has anew "Icon Files (iOS 5)" key in the Info.plist file. Make sure the "Icon already includes gloss effect" boolean in that dict is set to "YES" too. You may need to clear your build folder before the changes take effect in the simulator. It takes a lot of troubleshooting to get it to work on older projects, so you might try erasing the root level key.

link|improve this answer
1  
Yes, this works for me. This answer should get accepted. – Justin Amberson Dec 9 '11 at 4:02
3  
worked for me too, but remember if you're deploying backwards to pre iOS5 as well you will still need to include the old boolean too. – Surfdev Dec 15 '11 at 23:16
Worked for me three. – Mark Jan 10 at 20:02
Worked for me too. Accepted answer? – Dirty Henry Apr 19 at 14:00
feedback

It appears this problem is still not fixed in the GM. I set UIPrerenderedIcon to YES, but the rendered icon includes gloss effect.


Sorry, I confirmed that this problem is solved in the GM. If you would like to erase gross effect, set "Icon already includes gross effect" under "Primary Icons" under "Icon files (iOS 5)" to YES.

link|improve this answer
feedback

There are 2 keys in the Info.plist governing this.

xCode generated the following code for you, but it doesn't offer a GUI for changing this: Open your Info.plist file (Right Click > Open As > Source Code).

<key>CFBundleIcons</key>
<dict>
    <key>CFBundlePrimaryIcon</key>
    <dict>
        <key>CFBundleIconFiles</key>
        <array>
            <string>myIcon.png</string>
        </array>
        <key>UIPrerenderedIcon</key>
        <false/>
    </dict>
</dict>

set the UIPrerenderedIcon = true and you are good to go (this is NOT the other UIPrerenderedIcon that also exists in this file as a boolean key!).

link|improve this answer
feedback

In the release notes for iOS5 Beta 6 it says:

FIXED: The UIPrerenderedIcon key (in the Info.plist file) is not honored in this beta.

link|improve this answer
feedback

Yes, it's an iOS 5 bug. I'm sure it'll be fixed in the GM.

link|improve this answer
feedback

What worked for me is to change the "Icon already includes gloss effect" boolean under "Icon Files (iOS 5)" first to NO, compile, then set the boolean to YES and compile.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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