2

我已经指定了视网膜和非视网膜图像,并验证我将它们放在 Xcode 中的正确位置。归档应用程序后,图标出现模糊,如附件所示。

我能做些什么来解决这个问题?

在此处输入图像描述

列表文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>en</string>
    <key>CFBundleDisplayName</key>
    <string>${PRODUCT_NAME}</string>
    <key>CFBundleExecutable</key>
    <string>${EXECUTABLE_NAME}</string>
    <key>CFBundleIcons</key>
    <dict>
        <key>CFBundlePrimaryIcon</key>
        <dict>
            <key>CFBundleIconFiles</key>
            <array>
                <string>app_icon_57.png</string>
                <string>app_icon_114.png</string>
            </array>
        </dict>
    </dict>
    <key>CFBundleIdentifier</key>
    <string>com.gannett.democratandchronicle.${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>UIMainStoryboardFile</key>
    <string>MainStoryboard</string>
    <key>UIRequiredDeviceCapabilities</key>
    <array>
        <string>armv7</string>
    </array>
    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
    </array>
</dict>

4

2 回答 2

3

它只是在组织者中模糊不清。它对用户设备或 App Store 上的图标没有影响。

于 2012-07-18T17:49:26.977 回答
1

这是 xcode 中的一个错误 - 我已经向Apple 提交了一个描述它的雷达( openradar 链接)。

如上所述,它不会影响在 iOS 上创建的 .ipa。如果问题困扰您,解决方法是在 info.plist 图标文件数组中的 1x 版本之前定义图标的 @2x 版本。

于 2012-11-14T23:47:33.000 回答