2012-07-18 53 views
2

我指定了視網膜和非視網膜圖像,並驗證了我將它們放在Xcode的正確位置。歸檔應用程序後,該圖標顯示模糊,如附件所示。歸檔應用程序在組織者屏幕上產生模糊的圖標

我能做些什麼來解決這個問題?

enter image description here

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> 

+0

我從來沒有能夠正確顯示該圖標。我很想看看有沒有辦法做到這一點。 – 2012-07-18 14:43:41

+0

我也看到了,我認爲這只是因爲它炸掉了那裏的圖標。我沒有看到它會影響圖標的實際外觀,只要我將它移動到設備上即可。您還可以上傳App Store大圖標的其他圖稿。 – 2012-07-18 15:01:12

回答

3

只有在組織者模糊。 它對用戶設備或App Store上的圖標沒有影響。

1

這是xcode中的一個錯誤 - 我向蘋果公司提交了一個描述它的雷達(openradar link)。

如上所述,它不會影響在iOS上創建的.ipa。如果問題不夠充分,解決方法是在info.plist圖標文件數組中定義1x版本之前的圖標的@ 2x版本。

+0

它充斥着我,而瑞恩的建議確實爲我解決了它。 – 2013-01-08 08:08:51

相關問題