what is correct format of bundle identifier in iOS?

落爺英雄遲暮 提交于 2019-11-28 10:59:33

All the formats which you have mentioned are correct. But the standard format as expected by apple is com.company.appname.

The First type is the correct one.It is a standard to use the reverse domain name as the bundle identifier along with app name. For example com.google.gmail,com.fb.messanger

The Bundle ID can only contain alphanumeric characters, hyphens, and periods. It can't end on a period.

This regexp should be correct: .[\w\.-]+[\w-]

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!