gpt4 book ai didi

ios - Xcode 5 iOS 6.1 SDK 中不显示报亭图标

转载 作者:可可西里 更新时间:2023-11-01 17:08:02 25 4
gpt4 key购买 nike

自从将 Xcode 升级到 v5 并将启动和应用程序图标图像转换为图像 Assets 目录后,我一直无法在 iOS 6.1 和 iOS 7 的报亭中看到我的应用程序的报亭图标。相反,我看到了常规应用程序图标在它的地方。我仍在针对 iOS SDK 6.1 进行编译,因为 iOS 7 中的明显样式更改我还无法深入测试。

也就是说,这是我在报亭图标 icon-newsstand.png 上尝试过的:

  1. 将 icon-newsstand.png 转换为位于 ./Images.xcassets/icon-newsstand.imageset/icon-newsstand.png 的 Assets 目录。
  2. 将 icon-newsstand.png 作为项目的一部分保存在我的 Resources 文件夹中。

这些解决方案均无效。这是我的 info.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>---- ----</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIcons</key>
<dict>
<key>UINewsstandIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>icon-newsstand.png</string>
</array>
<key>UINewsstandBindingEdge</key>
<string>UINewsstandBindingEdgeLeft</string>
<key>UINewsstandBindingType</key>
<string>UINewsstandBindingTypeMagazine</string>
</dict>
</dict>
<key>UIBackgroundModes</key>
<array>
<string>newsstand-content</string>
</array>
<key>UINewsstandApp</key>
<true/>
<key>CFBundleIdentifier</key>
<string>com.----.----</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.1</string>
<key>CFBundleName</key>
<string>---- ----</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2.0.1.13830</string> <!-- The Version of the app. -->
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIPrerenderedIcon</key>
<true/>
<key>UIStatusBarHidden</key>
<true/>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>FB Connect</string>
<key>CFBundleURLSchemes</key>
<array>
<string>fb150871295037449------</string><!-- The app id must be appended to the end of this string. Example: <string>fb150871295037449connections</string> -->
</array>
</dict>
</array>
</dict>
</plist>

在升级 Xcode 并转换为图像 Assets 目录后,有人遇到过这个问题吗?有没有人知道从哪里开始更改我的项目?到目前为止,根据我的搜索,在线和 StackOverflow 上关于 Newsstand 和 Xcode 5 问题的详细信息很少。

如果有任何帮助,我将不胜感激。谢谢!

最佳答案

我发现问题只发生在 iPad 上。自从那个发现后,我意识到我的 info.plist 中缺少一个部分,如下所示:

    <key>CFBundleIcons~ipad</key>
<dict>
<key>UINewsstandIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>icon-newsstand.png</string>
</array>
<key>UINewsstandBindingEdge</key>
<string>UINewsstandBindingEdgeLeft</string>
<key>UINewsstandBindingType</key>
<string>UINewsstandBindingTypeMagazine</string>
</dict>
</dict>

谜底揭晓!

关于ios - Xcode 5 iOS 6.1 SDK 中不显示报亭图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20009986/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com