从 CNContactProperty 中提取电子邮件 - iOS 9

Extract email from CNContactProperty - iOS 9

我有一个 iOS 应用程序,它需要访问联系人选择器视图控制器,以便允许用户 select 联系人 属性 例如电子邮件地址/电话号码即时消息电子邮件地址。

我现在遇到的问题是,我不知道如何解析返回的数据。我已经使用了 contactPicker didSelectContactProperty 方法,但是我无法解析我需要的数据。

-(void)contactPicker:(CNContactPickerViewController *)picker didSelectContactProperty:(CNContactProperty *)contactProperty {

   CNLabeledValue *test = contactProperty.contact.emailAddresses.firstObject;
   NSLog(@"%@", test);

   NSLog(@"%@", contactProperty.contact.phoneNumbers);
}

如果你运行上面的代码你会得到以下响应:

2015-10-11 13:30:07.059 Actions[516:212765] <CNLabeledValue: 0x13656d090: identifier=21F2B1B2-8158-466B-9224-E2036CA07D28, label=_$!<Other>!$_, value=News_Europe@iEUNS.com> 2015-10-11 13:30:07.061 App_Name[516:212765] (
    "<CNLabeledValue: 0x13672a500: identifier=6697A0E9-3B91-4566-B26E-83B87979F816, label=_$!<Main>!$_, value=<CNPhoneNumber: 0x13672a660: countryCode=gb, digits=08000391010>>" )

太好了,但是如何从中提取我需要的数据呢?为什么 NSLog 语句以奇怪的格式返回数据?

丹,谢谢你的时间。

返回值属于CNLabeledValueclass。为了从他们那里获得价值,比如电子邮件,请执行此操作

CNLabeledValue *emailValue = contactProperty.contact.emailAddresses.firstObject;
NSString *emailString = emailValue.value;

如果您想要一个 phone 数字的值,这就是您检索

的方式
CNLabeledValue *phoneNumberValue = contactProperty.contact.phoneNumbers.firstObject;
CNPhoneNumber *phoneNumber = phoneNumberValue.value;
NSString *phoneNumberString = phoneNumber.stringValue;

因为返回值是 CNLabeledValue,您还可以检索 phone 号码或电子邮件的标签

NSString *emailLabel = emailValue.label; //This may be 'Work', 'Home', etc.
NSString *phoneNumberLabel = phoneNumberValue.label;
Here is swift version of Chris answer :

 func fatchContacts(store : CNContactStore)  {
    do
    {
    let groups = try store.groups(matching: nil)
    let predicate =  CNContact.predicateForContactsInGroup(withIdentifier: groups[0].identifier)
    //let predicate = CNContact.predicateForContactsMatchingName("John")
        let keyToFatch = [CNContactFormatter.descriptorForRequiredKeys(for: .fullName ) ,CNContactEmailAddressesKey] as [Any]
    let contacts = try store.unifiedContacts(matching: predicate, keysToFetch: keyToFatch as! [CNKeyDescriptor])            //------------------------------------------------------
   //-------------Get Here-----------------------------------------
     print(contacts)
     print(contacts[0])
        let formatter = CNContactFormatter ()
        print(formatter.string(from: contacts[0]))
        print(contacts[0].givenName)
        print(contacts[0].emailAddresses)
        let emailValue : CNLabeledValue = contacts[0].emailAddresses.first!;
        let  email = emailValue.value
        print(email)




    }
    catch{

    }
}


Just pass the CNContactStore object        

对于 swift 3.0 :

 public func contactPicker(_ picker: CNContactPickerViewController, didSelect contact: CNContact)
{
      if let emailValue : CNLabeledValue = contact.emailAddresses.first
    {
        txtEmail.text = emailValue.value as String
    }
    if let phoneNumber : CNLabeledValue = contact.phoneNumbers.first
    {
        txtMobno.text = phoneNumber.value.stringValue
    }
     txtFname.text = contact.givenName + " " + contact.familyName

}

不幸的是,Chris 的回答告诉您如何从返回的 CNLabeledValue 对象中获取值,但它没有告诉您如何根据函数特征的 contactProperty 参数来识别选择了什么 CNLabeledValue。

您需要做的是循环浏览每个联系人的电子邮件地址,并检查它的标识符是否与所选的 contactProperty 标识符匹配。在 didSelectContactProperty 函数中使用以下代码:

NSString *selectedEmail;

for (CNLabeledValue<NSString*>* email in contactProperty.contact.emailAddresses) {
    if ([email.identifier isEqualToString:contactProperty.identifier]) {
            selectedEmail = (NSString *)email.value;
    }
}

请注意,我只使用邮政地址测试了此代码,因此可能需要进一步调整才能使用电子邮件地址。