我在使用标识符重新获取CNContact
时遇到问题。在早期我通过所有联系人枚举并使用电话号码执行某些操作,同时将标识符存储在数组中。
稍后,我想使用以下内容使用其中一个存储的标识符获取特定联系人(其中currentIdentifier
是我之前存储的标识符):
CNContact *currentContact = [[CNContact alloc] init];
currentContact = [self.contactStore unifiedContactWithIdentifier:currentIdentifier keysToFetch:@[[CNContactFormatter descriptorForRequiredKeysForStyle:CNContactFormatterStyleFullName]] error:&error];
但是,当我登录时,我会继续NULL
。