2012-06-30 31 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

相关问题