2

Retina 画像と非 Retina 画像を指定し、それらを Xcode の正しい場所に配置したことを確認しました。アプリをアーカイブした後、添付のようにアイコンがぼやけて表示されます。

これを修正するにはどうすればよいですか?

ここに画像の説明を入力

plist ファイル:

<?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 に答える