Space in iOS app name is not showing Space in iOS app name is not showing ios ios

Space in iOS app name is not showing


For iOS 11 you can open the info.plist as source code and use   instead of spaces


  1. Open the info.plist file as SourceCode.
  2. Use &#x2007 ; as separator for the space in CFBundleDisplayName.

Example

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


In your localized InfoPlist.string DO NOT use spaces but instead use unicode character "No-break space" :

http://www.fileformat.info/info/unicode/char/00a0/index.htm

so your line in InfoPlist.string should look like :

"CFBundleDisplayName" = "My\U00A0app";