在iPad中联系UI框架

时间:2017-01-27 05:54:40

标签: objective-c

在iPad应用程序中使用联系框架时出错。

如何使用contactui框架访问iPad中的联系人列表?

我在这里给出了我的代码:

CNContactPickerViewController *peoplePicker = [[CNContactPickerViewController alloc] init];
peoplePicker.delegate = self;
NSArray *arrKeys = @[CNContactPhoneNumbersKey]; //display only phone numbers
peoplePicker.displayedPropertyKeys = arrKeys;
[self presentViewController:peoplePicker animated:YES completion:nil];

0 个答案:

没有答案