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

后端 未结 8 408
醉话见心
醉话见心 2021-02-03 22:05

I am trying to put a space in my app name (standalone sticker pack) in Xcode 8. The solutions I\'ve seen on here are to change the Product Name (in packaging) or to change the \

相关标签:
8条回答
  • 2021-02-03 22:23

    After changed Bundle display name make a Clean of project.

    0 讨论(0)
  • 2021-02-03 22:27

    For xcode 9.3, Goto Targets, Build Settings, under packaging change Produce Name. See below screen shot

    After this if it not changed, clean product to reopen X code.

    0 讨论(0)
  • 2021-02-03 22:28

    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

    0 讨论(0)
  • 2021-02-03 22:35
    1. Change the Bundle Display Name (CFBundleDisplayName) in your Info.plist file
    2. Check if you have any localization (InfoPlist.strings) files, and change the corresponding CFBundleDisplayName values in those files to the localized values.
    3. That's it.
    0 讨论(0)
  • 2021-02-03 22:36

    Goto Info.plist and add "Bundle display name" and set your rename in value box make sure the Bundle display name type is a string run the project automatically it will be changed

    0 讨论(0)
  • 2021-02-03 22:40

    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.

    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.

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

    0 讨论(0)
提交回复
热议问题