图标已经包含光泽效果不工作ios 5

时间:2012-06-30 07:59:24

标签: iphone ios ipad ios5

我正在设置我的项目信息 - plist文件图标已经包含光泽效果键设置是。但是,在iOS5 sdk中不起作用,我尝试构建和清理我的项目文件夹但是,不起作用我已经尝试了很多方法,但是,不适用于ios5 sdk和Xcode 4.2.3.i正在设置我的项目信息列表,如下面的屏幕截图:

enter image description here

提前致谢!

3 个答案:

答案 0 :(得分:1)

正如您已经得到答案的那样,对于Xcode 4.2(Snow leopard)的用户,Dinesh的解决方案将无效。在这里,您可以右键单击info.plist文件,然后打开源代码。

查找此内容,并将<false/>替换为<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 :(得分:1)

大多数iOS 5图标上面的xcode最新版本上的错误发布我的anser将完美地为我工作,我添加了prerender复选框勾选项目目标摘要!

关注链接一定会有所帮助!

Icon already includes gloss effects

欢迎!

答案 2 :(得分:1)

Just drag and drop the icon image in to place, here is the sample screenshot

enter image description here