Remove icon gloss effect from an Adobe Air iOS app?

﹥>﹥吖頭↗ 提交于 2019-12-22 08:28:26

问题


How do you prevent iTunes from adding the default gloss effect when compiling an iOS app using Adobe Air? Using Adobe Flash CS6. . . .


回答1:


Add the following to the InfoAdditions element in the application descriptor file:

<InfoAdditions> 
    <![CDATA[ 
        <key>UIPrerenderedIcon</key> 
        <true/> 
    ]]> 
</InfoAdditions> 

from : http://help.adobe.com/en_US/air/build/WS901d38e593cd1bac1e63e3d129907d2886-8000.html




回答2:


This will require you to add a boolean UIPrerenderedIcon key to the app's info.plist file and set it's value to true.

To do so, follow the steps below:

  1. Change the extension of the .ipa file produced by Flash CS6 to .zip.
  2. Unzip the file and right-click to view the app's contents, which should be located in a directory named "Payload."
  3. Locate and edit the info.plist file, adding the UIPrerenderedIcon key/value pair mentioned above.


来源:https://stackoverflow.com/questions/11300130/remove-icon-gloss-effect-from-an-adobe-air-ios-app

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