What does bundle identifier mean in an iOS project?

后端 未结 3 1873
[愿得一人]
[愿得一人] 2021-02-01 14:14

When I use command line tool template it has a bundle identifier inside the wizard. What does bundle identifier mean? Is this similar to namespace?

3条回答
  •  鱼传尺愫
    2021-02-01 14:50

    The bundle identifier is the unique string that identifies your application to the system. This compares to the display name (namespaces are usually prefixes in frameworks), which is what iOS uses to show the name of your app on the springboard.

    Bundle identifiers are usually (not always) written out in reverse DNS notation (I.e com.myCompany.myApp).

提交回复
热议问题