How do I remove gloss from an iPhone app icon?

给你一囗甜甜゛ 提交于 2019-12-10 19:07:17

问题


Here is a tutorial that tells you how to remove the gloss on an app in xcode. How can I do this in flash cs5?

If I can't, can I do something to the image in photoshop so that it looks like it has no gloss when the gloss is applied?


回答1:


In the xml that is generated with your swf go to the node < InfoAdditions >

And add the following after

<![CDATA[ 

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

before

 <key>UIDeviceFamily</key> 

Then when you compile, you icons will be without gloss




回答2:


For the plist, you should have the row Pratik mentions with all the necessary icons listed in the array.

Some of you will do this and still not have a retina display or gloss reflecting these changes.

In XCode 4.3.2 and possibly earlier versions, make sure you check the "Summary" tab in your project settings. There you will find a section called "App Icons" that should show both your Icon.png and Icon@2x.png. Make sure you have the "Prerendered Icon" box checked.

Even after all this, you might not have the retina display working. Check the "Info" tab's "Custom iOS Target Properties" section.

Make sure you delete the "Newstand Icons" section if you aren't going to use them or it will stop your app from passing validation when submitting to the AppStore.




回答3:


Set UIPrerenderedIcon to true in your plist. This may not work with older versions of iOS.




回答4:


In iOS 5, there is an additional plist entry to be checked here:

Icon Files (iOS 5) -> Primary Icon -> Icon Already includes gloss effect



来源:https://stackoverflow.com/questions/4727690/how-do-i-remove-gloss-from-an-iphone-app-icon

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!