1

I have an iPhone icon that shows up on the home screen. The icon is looking bad because of the semi circle overlay being added. How can I get rid of this?

user605957
  • 2,489
  • 6
  • 25
  • 33
  • possible duplicate of [How to disable highlighting of the app icon?](http://stackoverflow.com/questions/1003177/how-to-disable-highlighting-of-the-app-icon) – PengOne Jun 16 '11 at 05:41

2 Answers2

4

just set this Key in your info.plist:

<key>UIPrerenderedIcon</key>
<true/>

UIPrerenderedIcon to YES

if you are using newer versions use this:

Icon already includes gloss and bevel effects to YES (Just TICK it)

Hope it helps, if you need help comment!


This have been asked many times before, you may want to search here for a more detailed answer.. Here is a good one: How to disable highlighting of the app icon?

Community
  • 1
  • 1
Nicolas S
  • 5,325
  • 3
  • 29
  • 36
  • Where do I tick that setting? – user605957 Jun 13 '11 at 03:42
  • I dont see a key called "Information Property List" in "Edit Project Settings" – user605957 Jun 13 '11 at 03:47
  • You should look in the left panel where your files and classes are and expand all your folders, you should have a file "info.plist". There you add a key and look for the item in the answer depending on your SDK version – Nicolas S Jun 13 '11 at 23:55
2

In IOS 5 it's now called, "Icon already includes gloss effects" then set it to "YES"

Garth Humphreys
  • 793
  • 2
  • 9
  • 16