iPhone XCode - How to change title below app icon

后端 未结 4 1041
隐瞒了意图╮
隐瞒了意图╮ 2020-12-24 04:44

What is the best way to rename the app so that the title below the app icon can have spaces but the build files doesn\'t have spaces. (ie, title is \"My Project\" and build

相关标签:
4条回答
  • 2020-12-24 05:08

    There should really be a caveat here. If you have shell scripts and other things dependent on the original app name, you may be committed to some extensive changes if you pursue the above solution. If you only want to change the display name, and only that, there's a Bundle display name under Info of your target under Custom iOS Target Properties.

    0 讨论(0)
  • 2020-12-24 05:13

    I'm using Xcode 6 and in the Info.plist, the key is called Bundle Name and the default is $(PRODUCT_NAME). You can double click and change the name, you'll be able to verify it.

    If you view the source code for the plist, you'll see:

    <key>CFBundleName</key>
    <string>Change this to the string to display under the icon</string>
    
    0 讨论(0)
  • 2020-12-24 05:21

    The field that you have to change is the Bundle Display Name (CFBundleDisplayName is the raw key name) in the info.plist file from ${PRODUCT_NAME} to 'your desired name'.

    Note: CFBundleDisplayName is different from CFBundleName. CFBundleDisplayName is the human visible/marketing name displayed on the device home screen, under the icon etc. While CFBundleName is the filename of the IPA and the folder for the app on the file system, 'Whatever' for example would be archived as Whatever.ipa and the app would be installed on a device under the folder called Whatever.app.

    0 讨论(0)
  • 2020-12-24 05:24

    You can edit info.plist in Info tab in xCode

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