requesters
A list of all uninvited users who have requested access to this share.
Declaration
var requesters: [CKShare.AccessRequester] { get }Discussion
When an originator or administrator allows share access requests, uninvited users can request to join the share. All pending access requests appear in this array. CloudKit returns each requester with name components and either an email or phone number.
Either share owners or administrators can respond to these access requests.
Responding to Access Requests:
Approve Requesters:
Fetch the participant information by running CKFetchShareParticipantsOperation with the requester’s participantLookupInfo.
Add the resulting participant to the share.
Deny Requesters:
Use denyRequesters(_:) to remove the requester from the requesters list.
Block Requesters:
Use blockRequesters(_:) to block requesters.
Blocking a requester prevents them from sending future access requests to the share.