iOS:使用标识符获取CNContact?

时间:2015-10-28 22:02:34

标签: ios objective-c cncontact

我在使用标识符重新获取CNContact时遇到问题。在早期我通过所有联系人枚举并使用电话号码执行某些操作,同时将标识符存储在数组中。

稍后,我想使用以下内容使用其中一个存储的标识符获取特定联系人(其中currentIdentifier是我之前存储的标识符):

CNContact *currentContact = [[CNContact alloc] init];
currentContact = [self.contactStore unifiedContactWithIdentifier:currentIdentifier keysToFetch:@[[CNContactFormatter descriptorForRequiredKeysForStyle:CNContactFormatterStyleFullName]] error:&error];

但是,当我登录时,我会继续NULL

0 个答案:

没有答案