How to change application display name in Xcode 8 to add space

I am trying to put a space in my application name (stand-alone sticker) in Xcode 8. The solutions I saw here are to change the product name (in the package) or change the "Display name of the package",

I changed the name of the product and it did not work (I cleared, rebuilt, reset the contents and settings in the simulator and left xcode, logged in and restored the application).

I don’t see “Package Display Name” anywhere. Should I add it, and if so, how to do it?

I read a thread. How do I change the name of an iOS application? and made suggestions, but it is still displayed in the simulator and testflight without a space. Did I miss something?

+17
source share
7 answers

Steps:

1. Open the Info project.

2. Add Bundle display name properties to Custom iOS Target Properties . (as the "Key")

3 Enter the display name that will be displayed on the iPhone / iPad screen under the application icon. (as "Value")

This is my solution that works correctly. You should also uninstall the previously installed application and reinstall it. Solution

+47
source

Just go to Target → General → In Identity → Display Name . By default, it has a display name for your application that is not highlighted. Enter the display name of your new application here.

enter image description here

+17
source

After changing the Bundle display name, create a Clean project.

enter image description here

+2
source
  • Change the Bundle Display Name (CFBundleDisplayName) in the Info.plist File
  • Check if you have localization files (InfoPlist.strings) and change the corresponding CFBundleDisplayName values ​​in these files to localized values.
  • What is it.
+2
source

For xcode 9.3, Goto Targets, Build Settings, change the manufacturer name in the packaging section. See below screenshot

enter image description here

After that, if it has not changed, clean the product to re-open the X-code.

0
source

When creating a new project, Xcode uses the default Product Name. You can simply change this in the build settings, even by specifying separate names for your circuits.

enter image description here

0
source

Go to Info.plist and add “Package Display Name” and set your renaming in the value field. Make sure that the type of the displayed name of the package is a string, run the project automatically, it will be changed

-1
source

Source: https://habr.com/ru/post/1257417/


All Articles