Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding space in app name for iOS 11

Tags:

xcode

ios11

I am facing very abnormal issue as in iOS 11, space is getting removed between app name in iOS 11.

I have tried to get space in between app name using following steps:

  1. Open info.plist as Source code(right click, open as...)
  2. Find CFBundleDisplayName
  3. Replace normal space with unicode  

But   is displayed as a double space in the Settings app on iOS 11 and the Home screen on iOS 9 & 10.

Thanks in advance.

like image 565
Abhishek Avatar asked Dec 26 '17 13:12

Abhishek


1 Answers

If anyone is using an .xcconfig file for configuring the app, simply copy and paste the FIGURE SPACE character.

So instead of

PRODUCT_NAME = App Name

use

PRODUCT_NAME = App Name

Looks the same, but the space on the second snippet is actually &#x2007 . I used WebStorm to copy and paste the character, and not XCode.

like image 54
Gilad Ronen Avatar answered Oct 04 '22 19:10

Gilad Ronen