CKContainer.DiscoverUserIdentityWithPhoneNumber Method

Definition

Retrieves the CKUserIdentity data for the record with specified phoneNumber.

[Foundation.Export("discoverUserIdentityWithPhoneNumber:completionHandler:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 12, ObjCRuntime.PlatformArchitecture.Arch64, null)]
public virtual void DiscoverUserIdentityWithPhoneNumber (string phoneNumber, Action<CloudKit.CKUserIdentity,Foundation.NSError> completionHandler);
abstract member DiscoverUserIdentityWithPhoneNumber : string * Action<CloudKit.CKUserIdentity, Foundation.NSError> -> unit
override this.DiscoverUserIdentityWithPhoneNumber : string * Action<CloudKit.CKUserIdentity, Foundation.NSError> -> unit

Parameters

phoneNumber
String
completionHandler
Action<CKUserIdentity,NSError>
Attributes

Remarks

The "identity discovery" methods in CKContainer allow the developer to implement "friends who also use" functionality in their apps. These methods can be used to find user records in the CloudKit container that correspond to entries in the user's address book. No information about the user, beyond the fact that they use the app and agreed to share that status, is available from the CKContainer.

Applies to