iOS 6和Xcode 5.0的图标光泽度

Ric*_*ton 26 iphone xcode ios

在使用iOS6和XCode 5时,我真的很害怕如何从我的图标中删除光泽.

我已经阅读了这些问题:

从iOS 4.3中的图标中删除光泽效果

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

如何禁用突出显示应用程序图标?

现在我的plist看起来像这样:

<plist version="1.0">
<dict>
    <key>LSApplicationCategoryType</key>
    <string></string>
    <key>CFBundleDevelopmentRegion</key>
    <string>en</string>
    <key>CFBundleDisplayName</key>
    <string>${PRODUCT_NAME}</string>
    <key>CFBundleExecutable</key>
    <string>${EXECUTABLE_NAME}</string>
    <key>CFBundleIdentifier</key>
    <string>com.burton.${PRODUCT_NAME:rfc1034identifier}</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>${PRODUCT_NAME}</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleShortVersionString</key>
    <string>1.0</string>
    <key>CFBundleSignature</key>
    <string>????</string>
    <key>CFBundleVersion</key>
    <string>1.0</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>UIPrerenderedIcon</key>
    <true/>
    <key>UIRequiredDeviceCapabilities</key>
    <array>
        <string>armv7</string>
    </array>
    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
    </array>
</dict>
</plist>
Run Code Online (Sandbox Code Playgroud)

但是,当我在手机上预览应用程序时,仍然会应用光泽效果.任何帮助将非常感激.

dub*_*ike 116

实际上他们已经移动了设置.在项目设置下的常规选项卡下,在应用程序图标部分下,选择"使用资产目录".现在在项目文件(最左侧面板)下导航到Images.xcassets文件.现在确保添加了应用程序图标和启动图像.重要的是确保启用"Ios Icon预渲染"复选框.在查看Images.xcassets文件时,您可以在属性面板(最右侧面板)上找到此选项.就是这样,您可以删除旧图像并进行清理,然后构建并运行并完成.这对我有用...... 在此输入图像描述

  • 我已经勾选了方框,清理,删除了派生数据,并且仍然在iOS 6上显示光泽.我不得不重置模拟器以使更改生效,大概用户将不得不删除应用程序并重新安装:( (2认同)

Ric*_*ton 8

经过多次探讨后,发现这是一个XCode 5和用于创建图标的Media.xcassets文件夹的错误.我已向Apple提交了错误报告.