How do you override the Icon for iphone apps?

送分小仙女□ 提交于 2019-12-07 11:16:16

问题


I remember reading somewhere that you can provide your own icons without having them pass them through the automatic gloss effect when compiling an iphone app, but I can't remember how to do it, and not sure where it was in the docs. Anyone here remembers?

thanks!


回答1:


Add the "UIPrerenderedIcon" to your info.plist file, change it to be a boolean and make it true. (In 2.0 of the iPhone OS you could also leave it as a string and use YES or NO, but that no longer works in 2.1.)




回答2:


Stephen is correct. The exact syntax that works in 2.1 is:

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


来源:https://stackoverflow.com/questions/236376/how-do-you-override-the-icon-for-iphone-apps

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