CNContact 框架无法获取所有联系人(iCloud、Gmail)

CNContact Frame work not fetching all contacts(iCloud,Gmail)

设置>联系人>默认帐户选择为 iCloud 并保存一个新的 contact.Then 将默认帐户更改为 gmail。 CNContactStore 未获取新保存的联系人。

 CNContactStore *store = [[CNContactStore alloc] init];
[store requestAccessForEntityType:CNEntityTypeContacts completionHandler:^(BOOL granted, NSError * _Nullable error) {
    if (granted == YES)
    {
        NSArray *keys = @[CNContactFamilyNameKey, CNContactGivenNameKey, CNContactPhoneNumbersKey, CNContactImageDataKey,CNContactEmailAddressesKey];
        NSArray * contactContainerArray =  [store containersMatchingPredicate:nil error:nil];
        for(CNContainer * container in contactContainerArray) {
            NSPredicate *predicate = [CNContact predicateForContactsInContainerWithIdentifier:container.identifier];
            NSError *error;
            NSArray *cnContacts = [store unifiedContactsMatchingPredicate:predicate keysToFetch:keys error:&error];
}

如果你只是想获取所有统一的联系人(代表同一个人的不同帐户中的联系人可能会自动链接在一起。链接的联系人在 macOS 和 iOS 应用程序中显示为统一联系人)最好的解决方案会低于一

 -(void)fetchContacts
  {
      CNContactStore *store = [[CNContactStore alloc] init];    
      [store requestAccessForEntityType:CNEntityTypeContacts completionHandler:^(BOOL granted, NSError * _Nullable error) {
      if (granted == YES)
      {
        //keys with fetching properties
        NSArray *keys = @[CNContactFamilyNameKey, CNContactGivenNameKey, CNContactPhoneNumbersKey, CNContactImageDataKey,CNContactEmailAddressesKey];
        NSString *containerId = store.defaultContainerIdentifier;
        NSArray * contactContainerArray =  [store containersMatchingPredicate:nil error:nil];
        CNContactFetchRequest * fetchRequest = [[CNContactFetchRequest alloc]initWithKeysToFetch:keys];
        [store enumerateContactsWithFetchRequest:fetchRequest error:nil usingBlock:^(CNContact * _Nonnull contact, BOOL * _Nonnull stop) {

        }];
      }
  }