如何在应用程序名称iOS 11中添加空间?

5 xcode ios ios11

我已经尝试了很多方法为我的应用程序名称添加空间,但仍然无法在iOS 11上找到正确的方法.我也尝试了stackoverflow上的所有方法但仍然无法做到.iOS设备上的我的应用程序名称现在是这样的"MyAppNa ..."任何建议?

这是我的info.list代码的一部分.

<key>CFBundleDisplayName</key>
<string>My App Name</string>
<key>CFBundleExecutable</key>
Run Code Online (Sandbox Code Playgroud)

小智 18

在info.plist中添加此密钥

<key>CFBundleDisplayName</key>
<string>App&#x2007;Name</string>
Run Code Online (Sandbox Code Playgroud)

记住&#x2007;不能在项目的构建设置中工作.&#x2007;这将作为空间

Output:
App Name
Run Code Online (Sandbox Code Playgroud)