在 Info.plist 中找不到捆绑包显示名称

Cannot find Bundle Display Name in Info.plist

如果我的应用程序的产品名称是 "AppName: Some Description",我只想 "AppName" 作为名称显示在 iOS 主屏幕上的应用程序图标下方。我做了一些搜索,发现了这个 SO 问题 (Change name of iPhone app in Xcode 4)。我正在使用 Xcode 6,但在 Info.plist 中找不到 捆绑包显示名称 。有人可以告诉我如何在 Xcode 6.

中执行此操作吗

谢谢

更新:

只需将光标放在 Info.plist 上,然后单击 + 按钮。 Select "Bundle display name" 并在值部分插入名称。

Bundle Name 是您必须在 info.plist 中设置的名称,以便在 iOS 主屏幕上显示名称

编辑:

您在 xcode 中仍有捆绑显示名称 6. 只需将其添加到 info.plist

要更改显示在应用程序图标下方的名称,请修改 Info.plist.

中的 CFBundleDisplayName 键
  1. 单击“支持文件”子文件夹旁边的显示三角形以显示其内容。
  2. Select Info.plist 文件显示一个 属性 键和值列表编辑器。
  3. 默认情况下,Xcode 显示键的人类可读字符串而不是其实际名称。因此,在 属性 列表中搜索“Bundle display name”。如果您的 属性 列表已经显示 Bundle 显示名称,请跳至第 5 步。

If it doesn't, add it to your list as follows:

  - Click on any entry in your list, then click the "+" button.
  - Choose Bundle display name from the ensuing pop-up menu.
  1. 双击 Bundle 显示名称的值列。

  2. 为 Bundle 显示名称输入一个新值,如图

Technical Q&A QA1823