我的應用程序瞄準iphone,但顯然它也可以安裝在iPad上。ipad3上iphone應用程序的圖標
在iPhone上,它使用正確的圖標圖像;在iPad 2上,它也使用正確的圖標。
但是,在iPad 3上,不是使用圖標作爲圖標,而是使用我的啓動圖像作爲圖標。這是iPad 3上的常見行爲嗎?或者是我的設置錯誤? (我使用了最新的SDK,主攻的iOS 5.0,如果該事項)
更新
我重視plist文件下方。我想我可以理解有什麼不對...... [email protected]是啓動圖像的名稱。令我感到困惑的是,這與我在「摘要」屏幕上的Xcode中看到的不一致。在Xcode中總結屏幕上:
- 我有視網膜圖標設置爲SOF_app_icon.png,我沒有一個非Retina的圖標集 - 它說:「沒有圖像指定」;
- 我有兩個啓動圖像集: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圖標的文件名是什麼? – 2012-04-04 21:12:31