I have retrieves all contact by using following method
- (void)getAllContacts:(void(^)(NSArray *array))handler
{
CNAuthorizationStatus status = [CNContac
You need to add [CNContactViewController descriptorForRequiredKeys]
as an array of keysToFetch
you have to pass in your CNContactFetchRequest
.
Example:
CNContactFetchRequest *request = [[CNContactFetchRequest alloc] initWithKeysToFetch:@[CNContactIdentifierKey, CNContactEmailAddressesKey, CNContactBirthdayKey, CNContactImageDataKey, CNContactPhoneNumbersKey, [CNContactFormatter descriptorForRequiredKeysForStyle:CNContactFormatterStyleFullName], [CNContactViewController descriptorForRequiredKeys]]];