How can I add spaces to the app name

12,878

Solution 1

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

Solution 2

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

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

Solution 3

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 4

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

enter image description here

Share:
12,878
Lennart P.
Author by

Lennart P.

I am a hobby iOS programmer and creator of app Project Enigma.

Updated on June 11, 2022

Comments

  • Lennart P.
    Lennart P. almost 2 years

    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