2012-07-16 71 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> 

`

相關問題