2012-06-30 52 views
1

我正在設置我的項目info-plist文件圖標已包含設置yes.but的光澤效果鍵,但在iOS5 sdk中不起作用,我嘗試構建並清理我的項目文件夾但是,不工作我已經嘗試的方法很多,但,不上的iOS5 SDK和Xcode的工作4.2.3.i正在設置我的項目信息列表類似下面的屏幕截圖:圖標已包括光澤效果不工作ios 5

enter image description here

謝謝提前!

+0

的[圖標已經包括光澤效果](http://stackoverflow.com/questions/6972650/icon-already-includes-gloss-effects) – Mat

回答

1

低於大多數在Xcode的最新版本的iOS 5圖標錯誤的發佈我的雁更換<false/>將工作對我來說很好,我加入預渲染複選框勾項目目標總結!

按照鏈接一定會有幫助!

Icon already includes gloss effects

歡迎!

1

正如你已經得到你的答案,對於Xcode 4.2(雪豹)的用戶Dinesh的解決方案將無法正常工作。在這裏,您可以右鍵單擊info.plist文件,並以源代碼的形式打開。

查找這一點,並<true/><key>UIPrerenderedIcon</key>

<dict> 
    <key>CFBundlePrimaryIcon</key> 
    <dict> 
     <key>CFBundleIconFiles</key> 
     <array> 
      <string>iconNormal.png</string> 
      <string>iconRetina.png</string> 
     </array> 
     <key>UIPrerenderedIcon</key> 
     <true/> 
    </dict> 
</dict> 
1
Just drag and drop the icon image in to place, here is the sample screenshot 

enter image description here

+0

1感謝回答可能重複! – Dinesh