如何让我的捆绑包显示名称在“设置”中和我的图标下显示不同? (Xcode)
How can I make my bundle display name appear different in Settings and under my icon? (Xcode)
我的应用程序标题很长,在“设置”中看起来不错,但不适合我的应用程序图标。有没有办法在我的图标下设置不同的 Bundle Display Name?
简答:否
CFBundleDisplayName 和 CFBundleName 的区别在于 CFBundleDisplayName 是可本地化的。
应用标题、通知和设置均从 CFBundleDisplayName 中读取
在此处查看技术细节:
https://developer.apple.com/library/content/qa/qa1892/_index.html
我的应用程序标题很长,在“设置”中看起来不错,但不适合我的应用程序图标。有没有办法在我的图标下设置不同的 Bundle Display Name?
简答:否
CFBundleDisplayName 和 CFBundleName 的区别在于 CFBundleDisplayName 是可本地化的。
应用标题、通知和设置均从 CFBundleDisplayName 中读取
在此处查看技术细节: https://developer.apple.com/library/content/qa/qa1892/_index.html