Reputation: 14622
Icon already includes gloss effects
doesn't work on iOS 6 compiled on xCode 5 with SDK 7. How to fix this issue? Image assets on the project are enabled.
Upvotes: 20
Views: 7037
Reputation: 2492
Similar to @sc0rp10n, Xcode 5 has it listed in the plist as:
Upvotes: 3
Reputation: 1118
If you're not wanting to switch to the asset catalog, you can add the UIPrerenderedIcon key to your plist under the CFBundlePrimaryIcon dictionary (then clean):
Upvotes: 18
Reputation: 4918
As iOS7 is not under NDA anymore, here is the answer :
In Xcode 5 select Images.xcassets followed by your icon set. There is a "pre-rendered icon" setting that removes the gloss
Upvotes: 75