Get Contact Detail From PhoneBook

#import <Contacts/Contacts.h>

#import <ContactsUI/ContactsUI.h>

<CNContactPickerDelegate>

– (IBAction)buttonActionGetContactDetail:(id)sender {

    CNContactPickerViewController *cNContactPickerViewControllerObject = [[CNContactPickerViewController alloc]init];

    cNContactPickerViewControllerObject.delegate = self;

    [self presentViewController:cNContactPickerViewControllerObject animated:true completion:^{

    }];

}

– (void)contactPicker:(CNContactPickerViewController *)picker didSelectContact:(CNContact *)contact{

    NSLog(@”%@”,contact);

}

/*

– (void)contactPicker:(CNContactPickerViewController *)picker didSelectContacts:(NSArray<CNContact*> *)contacts{

    NSLog(@”%@”,contacts);

}

*/

Download Sample Project

Leave a comment