I have retrieves all contact by using following method
- (void)getAllContacts:(void(^)(NSArray *array))handler
{
CNAuthorizationStatus status = [CNContac
Add "CNContactViewController.descriptorForRequiredKeys" at the end of your keysToFetch array.
Worked for me after I did that.
Example:
NSArray *keysToFetch = @[CNContactIdentifierKey, CNContactGivenNameKey, CNContactFamilyNameKey, CNContactPhoneNumbersKey, CNContactImageDataAvailableKey, CNContactImageDataKey, CNContactViewController.descriptorForRequiredKeys];