2012-07-16 65 views

回答

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

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>[email protected]</string> 
    </array> 
    <key>UIPrerenderedIcon</key> 
    <true/> 
</dict> 

`

相关问题