Skip to content

Contacts Picker

levching edited this page Apr 15, 2020 · 3 revisions

Contacts Picker allows the user to select one or more contacts (or their properties) from the list of contacts displayed in the contact view controller.

using SA.iOS.Contacts 
...
ISN_CNContactStore.ShowContactsPickerUI((result) => {
    if (result.IsSucceeded) {
        foreach (var contact in result.Contacts) {
            Debug.Log(contact.GivenName);
        }
    } else {
        Debug.Log("Error: " + result.Error.Message);
    }
});

All loaded contacts will be represented as ISN_CNContact class instance.

About

Foundation

AV Foundation

App Tracking Transparency

Game Kit

Store Kit

UI Kit

Social

Replay Kit

Contacts

AVKit

Photos

App Delegate

User Notifications

MediaPlayer

Core Location

AdSupport

EventKit

CloudKit

Authentication Services

XCode

Knowledge Base

Clone this wiki locally