iTunes Connect App Name与Bundle在info.plist中显示名称

时间:2011-08-12 23:10:19

标签: iphone objective-c

我想知道您输入的iTunes Connect App Name与info.plist中的Bundle Display名称有什么区别吗?

我看到一些提及你的帖子只需更改info.plist即可轻松更改iphone图标下显示的应用名称。如何在不改变iTunes Connect应用程序名称的情况下工作?例如,我可以在我的info.plist中输入“Facebook”进行更新,而我的iTunes Connect应用程序名称显示“MyMadeUpAppName?

4 个答案:

答案 0 :(得分:17)

iTunes Connect中的名称将显示在App Store中; Info.plist显示名称将出现在主屏幕上。

答案 1 :(得分:2)

的Info.plist。

- You Set the bundle identifier to YourAppName.
- The Identifier should not contain spaces or funny characters - alphanumeric and dashes are allowed.
- If you want your app to be named something different on the actual device than its name in Xcode, change the "Bundle display name" as well.
- Set the bundle version number.
- Be sure the icon file is set.

的iTunes

  

登录开发者帐户后,您可以“管理您的应用程序”,然后“   添加新应用程序“。将显示在您的itunes商店。您可以随时更改您的iTunes商店的应用名称

答案 2 :(得分:1)

如果更改了Bundle Display Name,则还应更改iTunes Connect App Store。

我拒绝引用以下内容: 2.3性能:准确的元数据(性能 - 2.3.8)

来自Apple的引用:“我们注意到App Store上显示的应用程序名称与设备上显示的应用程序名称不匹配,这使得用户很难找到刚刚下载的应用程序。”

来自Apple的有用提示:“重要的是不要更改您的Bundle Identifier,它用于在App Store中唯一标识您的应用。更改Bundle Identifier将阻止用户升级,并将有效地引入新的应用程序而不是更新。“

答案 3 :(得分:0)

自发布以来已经过去了好几年。但希望有人会觉得这很有用。

是的,您可以通过编辑plist轻松更改Bundle标识符。

enter image description here

您可以通过编辑iTunes下的名称来更改您的iTunes App Store名称>你的应用> App Store标签>应用信息

捆绑显示名称和iTunes应用名称不应该相同,但当然它应该有点相似。这样用户就知道它与App Store中的应用程序相同。我使用以下格式的名字批准了我以前的版本。

显示名称:MyAppName

App Store名称:MyAppName - 国家/地区名称

有关详细信息,请参阅App Store Review Guidelines

中的3.4
相关问题