Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I add spaces to the app name

Tags:

ios

xcode8

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

like image 963
Lennart P. Avatar asked May 31 '17 04:05

Lennart P.


3 Answers

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.

like image 64
Mithra Singam Avatar answered Oct 20 '22 23:10

Mithra Singam


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

like image 43
Zeeshan Ghazanfar Avatar answered Oct 20 '22 21:10

Zeeshan Ghazanfar


Open project "Info".

Add a property "Bundle Display Name" into "Custom iOS Target Properties". (as "Key")

Enter the display name, that will be shown on iPhone/iPad screen under an app icon. (as "Value")

And also you should delete previously installed app and reinstall it. enter image description here

like image 28
harsha.kuruwita Avatar answered Oct 20 '22 22:10

harsha.kuruwita