7

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

我现在遇到的问题是我无法弄清楚如何解析返回的数据。我已经使用了该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 语句以奇怪的格式返回数据?

谢谢你的时间,丹。

4

4 回答 4

15

返回值属于CNLabeledValue类。为了从他们那里获得价值,比如说,电子邮件,这样做

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

如果您想要电话号码的值,这就是您检索该值的方式

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

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

NSString *emailLabel = emailValue.label; //This may be 'Work', 'Home', etc.
NSString *phoneNumberLabel = phoneNumberValue.label;
于 2015-10-11T12:51:10.637 回答
1

对于 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

}
于 2016-12-05T12:21:46.900 回答
1

不幸的是,克里斯的回答告诉你如何从返回的 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;
    }
}

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

于 2018-09-05T10:07:37.680 回答
0
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        
于 2016-11-25T14:07:47.803 回答