在使用iOS6和XCode 5时,我真的很害怕如何从我的图标中消除光泽。
我已经阅读了这些问题:
Removing gloss effect from an icon in iOS 4.3
icon already includes gloss effects not working ios 5
How to disable highlighting of the app icon?
现在我的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>
然而,当我在手机上预览应用程序时,仍然会应用光泽效果。任何帮助都会受到高度赞赏。
答案 0 :(得分:116)
实际上他们已经移动了设置。在项目设置下的常规选项卡下,在应用程序图标部分下,选择“使用资产目录”。现在在项目文件(最左侧面板)下导航到Images.xcassets文件。现在确保添加了应用程序图标和启动图像。重要的是确保启用“Ios Icon预渲染”复选框。在查看Images.xcassets文件时,您可以在属性面板(最右侧面板)上找到此选项。就是这样,您可以删除旧图像并进行清理,然后构建并运行并完成。这对我有用......
答案 1 :(得分:8)
经过多次探讨后,发现这是一个XCode 5和用于创建图标的Media.xcassets文件夹的错误。我已经向Apple提交了一份错误报告。
答案 2 :(得分:1)
设置&#34; iOS图标已预先渲染&#34;,您必须从设备中删除该应用并再次进行构建运行(在iOS 6.1中)。