私のアプリはiphoneをターゲットにしていますが、明らかにiPadにもインストールできます。iphone app for ipad3のアイコン
iPhoneでは、正しいアイコンイメージを使用します。 iPad 2では、正しいアイコンも使用されます。
ただし、iPad 3ではアイコンとしてアイコンを使用する代わりに、起動画像をアイコンとして使用します。これはiPad 3の通常の動作ですか?または私の設定が間違っていますか?私は以下のplistファイルを添付
更新
(これが重要かどうかは、最新のSDKを使用しています、とiOS 5.0を対象)。私は何が間違っているのか理解できると思います... [email protected]は起動イメージの名前です。私が困惑しているのは、「要約」画面のXcodeに表示されているものと一致しないということです。 Xcodeで要約画面上:
- 私は網膜のアイコンSOF_app_icon.pngに設定されている、と私は非網膜アイコンセットを持っていない - それは、「何の画像が指定されていません」と言います。
- 私は2つの起動イメージセットを持っています:網膜以外の場合はDefault.png、網膜の場合は[email protected]です。ここで
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>English</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>SOF_app_icon.png</string>
<string>[email protected]</string>
</array>
</dict>
</dict>
<key>CFBundleIdentifier</key>
<string>com.overwaitea.${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>LSApplicationCategoryType</key>
<string></string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSMainNibFile</key>
<string>MainWindow</string>
<key>NSZombieEnabled</key>
<false/>
<key>UIBackgroundModes</key>
<array>
<string>location</string>
</array>
<key>UIFileSharingEnabled</key>
<true/>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>location-services</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>corelocation</key>
<string>YES</string>
</dict>
</plist>
iPad 3のアイコンのファイル名は何ですか? –