我需要获取用户设备上所有联系人的数量。ABAddressBookGetPersonCount 上的弃用消息说:
使用 CNContactFetchRequest 的获取结果计数,谓词 = nil
以下是我按照该指南编写的内容:
__block NSUInteger contactsCount = 0;
NSError *error;
CNContactFetchRequest *request = [[CNContactFetchRequest alloc] initWithKeysToFetch:@[CNContactGivenNameKey]];
BOOL success = [self.contactStore enumerateContactsWithFetchRequest:request error:&error
usingBlock:^(CNContact * _Nonnull contact, BOOL * _Nonnull stop) {
contactsCount += 1;
}];
if (!success || error) {
NSLog(@"error counting all contacts, error - %@", error.localizedDescription);
}
然而,这在性能方面看起来很糟糕。在不枚举 CNContact 对象的情况下,我还没有找到另一种获取计数的方法。我错过了什么吗?
先感谢您!