我使用![CDATA[<key>UIDeviceFamily</key><array><string>2</string></array>]]
更改了代码![CDATA[ <key>UIPrerenderedIcon</key><true/><array><string>2</string></array>]]
,但它无效。那是为什么?
答案 0 :(得分:1)
为什么在标题中包含FLASH CS5?
无论如何,问题在此之前已得到解答:
Removing Shine/Gloss effect on the iPhone through UIPrerenderedIcon not working on device
这显示了如何将其应用于模拟器和iOS 5硬件。
具体来说,
`
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>Icon.png</string>
<string>Icon@2x.png</string>
</array>
<key>UIPrerenderedIcon</key>
<true/>
</dict>
`
答案 1 :(得分:0)
如果你写了,那么你改变了这一行会很有用。但是它似乎是Info.plist的一个片段,因此,您更改的行格式无效。尝试这样的事情:
<key>UIPrerenderedIcon</key>
<true/>
<key>UIDeviceFamily</key>
<array><string>2</string></array>
同时检查您是否在“图标文件(iOS5)”字典中设置了预渲染图标值,如Removing Shine/Gloss effect on the iPhone through UIPrerenderedIcon not working on device
中所述