How to add space in app name iOS 11?

Viewed 3114

I have tried many ways to add space for my app name but still couldn't figure it out the right way on iOS 11. I also tried all methods on stackoverflow but still can't do it. My app name on iOS device now is something 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>
1 Answers

Add this key in info.plist

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

Remember &#x2007; not worked in build setting of the project.&#x2007; this will work as space

Output:
App Name
Related