What's the difference between “bundle display name” and “bundle name” in cocoa application's info plist

前端 未结 6 756
迷失自我
迷失自我 2020-11-29 17:02

Here is a good question:

Bundle Name, Executable Name, Product Name...anything else?

but I just wonder about the difference between \"bundle display name\"

6条回答
  •  -上瘾入骨i
    2020-11-29 17:35

    Only if Bundle Display Name (CFBundleDisplayName) is not specified, value of Bundle Name (CFBundleName) will be used to displayed under App Icon.

    Please note that CFBundleDisplayName is localizable, and it should be used to set the App name shown in iOS Springboard menu & Mac OS X Applications / Mission Control.

    In short, don't touch CFBundleName and leave its value as default, i.e. ${PRODUCT_NAME}.

提交回复
热议问题