How to add a place to the name of the iOS 11 application?

I tried many ways to add space for my application name, but still couldn't figure it out correctly in iOS 11. I also tried all the methods in stackoverflow, but still can't do it. My application name on an iOS device now looks like this "MyAppNa ..." Any suggestions?

This is my part of my info.list code.

<key>CFBundleDisplayName</key>
<string>My App Name</string>
<key>CFBundleExecutable</key>
+4
source share
1 answer

Add this key to info.plist

<key>CFBundleDisplayName</key>
<string>App&#x2007;Name</string>

Remember did not work in setting up a project build. it will work like space &#x2007; &#x2007;

Output:
App Name
+9
source

Source: https://habr.com/ru/post/1689690/


All Articles