私は新しいアセット カタログ AppIcon を使用して、iOS 5 (理論上)、6、および 7 に適切なアイコンを設定しています。正しいもの (別のもの、確かに 57x57 のものからアップスケールされています)。
アセット カタログを作成した後、2 つの空のエントリがInfo.plist
ファイルに追加されていることがわかりました。
Icon files (iOS 5)
CFBundleIcons~ipad
私は多くの「解決策」を読みましたが、何もうまくいきませんでした:(
解決策の 1 つは、これらのエントリを plist に追加すること (および対応するアイコンをプロジェクトに追加すること) でした。
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>Icon.png</string>
<string>Icon@2x.png</string>
<string>Icon-72.png</string>
<string>Icon-72@2x.png</string>
</array>
<key>UIPrerenderedIcon</key>
<true/>
</dict>
</dict>
<key>CFBundleIcons~ipad</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>Icon-Small</string>
<string>Icon-Small-50</string>
<string>Icon-72@2x.png</string>
<string>Icon-72.png</string>
</array>
<key>UIPrerenderedIcon</key>
<true/>
</dict>
</dict>
しかし、それはまったく機能していません。
XCode 5.0 (5A1413) を使用しています。
どんな助けでも本当に感謝しています。