我的应用程序针对 iphone,但显然它也可以安装在 iPad 上。
在 iPhone 上,它使用正确的图标图像;在 iPad 2 上,它也使用正确的图标。
但是在 iPad 3 上,它不是使用图标作为图标,而是使用我的启动图像作为图标。这是 iPad 3 上的常见行为吗?还是我的设置错误?(我使用最新的 SDK,并针对 iOS 5.0,如果这很重要)
更新
我附上了下面的 plist 文件。我想我能理解出了什么问题…… Default@2x.png 是启动图像的名称。令我困惑的是,这与我在 Xcode 中“摘要”屏幕上看到的不匹配。在摘要屏幕上的 Xcode 中:
- 我将视网膜图标设置为 SOF_app_icon.png,但我没有设置非视网膜图标 - 它显示“未指定图像”;
- 我有两个启动图像集:用于非视网膜的 Default.png 和用于视网膜的 Default@2x.png。
这是 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>Default@2x.png</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>