且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

iPhone XCode - 如何更改应用程序图标下面的标题

更新时间:2022-12-22 11:53:27

您必须更改的栏位是 Bundle显示名称 info.plist 中的显示名称 CFBundleDisplayName 档案从 $ {PRODUCT_NAME} 更改为「您想要的名称」。

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'.

注意: CFBundleDisplayName CFBundleName 不同。 CFBundleDisplayName 是设备主屏幕上显示的人类可见/营销名称,图标等。 CFBundleName 文件系统上的IPA的文件名和应用程序的文件夹,'Whatever'例如将归档为 Whatever.ipa ,应用程序将安装在设备上文件夹 Whatever.app

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.