我如何根据商店为我的应用程序取不同的名称

How i can have different names for my App based on the store

我在apple store上有一个应用程序,应用程序的英文名称。例如,如果有人从阿拉伯国家/地区访问我的应用程序,我如何为我的应用程序使用不同的名称。

无需

即可本地化 AppStore 中应用程序的名称

有两种可能:

  1. 创建应用程序时,将默认语言设置为您想要的语言
  2. 通过应用程序信息 选项卡向现有应用程序添加本地化。您可以在 help pages of the iTunes Connect
  3. 上找到更多详细信息

重要

AppStore中不可能有两个功能相同但语言不同的应用程序目标。在这种情况下,Apple 建议对应用程序进行本地化,并有一个专门的支持页面,其中包含对所有必要工具的引用 link

应用程序内容本地化(可选)

要本地化应用程序的文本内容,请在项目中创建一个空 Localizable.strings 文件

/* No comment provided by engineer. */
"Username"="nom d'utilisateur";
/* {User First Name}'s Profile */
"%@'s Profile"="profil de %1$@";

并使用NSLocalizedString

textField.placeholder = NSLocalizedString(@"Username", nil);

documentation