Contents

requestAccess(for:completionHandler:)

Requests access to the user’s contacts.

Declaration

func requestAccess(for entityType: CNEntityType, completionHandler: @escaping  @Sendable (Bool, (any Error)?) -> Void)
func requestAccess(for entityType: CNEntityType) async throws -> Bool

Parameters

  • entityType:

    Set to CNEntityTypeContacts.

  • completionHandler:

    Set granted to True if the user allows access and error is nil.

Mentioned in

Discussion

Users grant or deny access to contact data on a per-app basis. Request access to contact data by calling the requestAccess(for:completionHandler:) method, which returns right away. The first time your app calls this method, the system prompts the user to grant or deny access to your app. The system then saves the user’s response and does not prompt them again.

The system executes completionHandler on an arbitrary queue. It is recommended that you use CNContactStore instance methods in this completion handler instead of the UI main thread. This method is optional when CNContactStore is used in the background thread. If you don’t request access, CNContactStore may block your app while asking the user for access.

See Also

Requesting access to the user’s contacts