Complete list of iOS app permissions

后端 未结 4 1934
面向向阳花
面向向阳花 2020-12-05 10:28

Different web sites (e.g.) explain that the iOS permission model works like this: All apps have a set of basic permissions (including Internet access). If an additional perm

4条回答
  •  青春惊慌失措
    2020-12-05 11:09

    All the keys you can add to your info.plist file are listed in Apple documentation and described.

    For most background modes you need to add a key in Info.plist to indicate that the app wants to run code while in the background.

    But this information is not used to ask user permission, only for ensuring device compatibility.

    Only some services require user permission (like Geolocation and Notifications services), which are automatically asked to the user the very first time your application attempt to use the corresponding API.

提交回复
热议问题