How to get an email using ABPeoplePicker?
I'm not finding Apple's documentation very helpful for actually getting data with a people picker, and there doesn't seem to be much other information on the internet :( I assume I need to get the email in this function: - (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)person property:(ABPropertyID)property identifier:(ABMultiValueIdentifier)identifier { } What can I put in there to get the email of the selected person? Use ABMultiValueRef emails = ABRecordCopyValue(record, kABPersonEmailProperty); After