select multiple properties from single contact in CNContactPicker
问题 I am trying to use the CNContactPickerViewController and keep running into issues with how to pick multiple properties from a single contact Basic display of the picker let contactStore = CNContactStore() override func viewDidLoad() { super.viewDidLoad() self.askForContactAccess() self.displayContacts() } func displayContacts(){ let contactPicker = CNContactPickerViewController() contactPicker.delegate = self self.present(contactPicker, animated: true, completion: nil) } this displays the