在使用iOS6和XCode 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文件时,您可以在属性面板(最右侧面板)上找到此选项.就是这样,您可以删除旧图像并进行清理,然后构建并运行并完成.这对我有用...... 