我已经指定了视网膜和非视网膜图像,并验证我将它们放在 Xcode 中的正确位置。归档应用后,图标显示模糊,如附件所示。
我能做些什么来解决这个问题?
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>
Best Answer-推荐答案 strong>
它只是在组织者中模糊。
它对用户设备或 App Store 上的图标没有影响。
关于ios - 归档应用程序在管理器屏幕上产生模糊图标,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11543875/
|