'How can I add spaces to the app name

I'm trying to add spaces to my app name and even though my Bundle display name contains spaces they won't show up on the simulator.

Does anybody know how do achieve that?

Thank you very much



Solution 1:[1]

From iOS 11, if app name consists of more than 12 characters(smaller devices), OS will automatically remove spaces.

I don't see any workaround for that as of now.

Solution 2:[2]

Open .plist as SourceCode and then in xml format use   instead of space. You can find appname under xml tag "CFBundleDisplayName" or you can add this tag. e.g App name

Solution 3:[3]

Goto build settings, Under product name, set the desired name with spaces. It will work fine.

enter image description here

Solution 4:[4]

From the iOS 11 onwards, Please follow below ToDo I have did and worked well !! Link

Solution 5:[5]

Use this below string in your project which will give the perfect app name with proper single character space:

Demo?App

The upper code is tested and verified in different environment setups and app name set in .xcconfig file.

You can also try with default config if it is working or not.

Note: You don't need to type otherwise it won't work, this will only work if you use my given string, so use it and modify only words, not the space.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2
Solution 3 pkc456
Solution 4 Kirtikumar A.
Solution 5 Kishan Barmawala