How to change app display name in Xcode 8 to add a space How to change app display name in Xcode 8 to add a space ios ios

How to change app display name in Xcode 8 to add a space


Steps:

1. Open project Info.

2. Add a property Bundle display name into Custom iOS Target Properties. (as "Key")

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

It's my solution that works properly. Also you should delete previously installed app and reinstall it.Solution


Just go to Target -> General -> In Identity -> Display Name. By default, it has your app display name which is unhighlighted. Enter here your new app display name.

enter image description here


There are two ways to change app display name.

Solution 1:

Goto Targets -> General Tab -> Identity section

In this you’ll find Display Name field where you set app display name.

Screenshot 1

Solution 2:

Bundle Display Name property is not present by default in Info.plist. You need to explicitly add this property.

Below image shows how to add this property.

Screenshot 2

Note: If still this new name is not reflected in your app then delete app and install it again.