我正在尝试从iOS8上的地址簿中提取电话号码和电子邮件地址,我打开了人员选择器,如下所示:
ABPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init];
picker.peoplePickerDelegate = self;
picker.displayedProperties = [NSArray arrayWithObjects:[NSNumber numberWithInt:kABPersonPhoneProperty], [NSNumber numberWithInt:kABPersonEmailProperty], nil];
[self presentViewController:picker animated:YES completion:nil];
如果联系方式中有多个电话号码和多个电子邮件地址,我该如何选择其中一个?
理想情况下,我希望能够勾选首选手机,然后选择首选电子邮件地址,但它看起来不像我。
有人知道该怎么做吗?