有没有办法提供屏幕,用户只能看到包含电子邮件的联系人? (因为默认情况下我会看到此屏幕上的所有联系人)
ABPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init];
// place the delegate of the picker to the controll
picker.peoplePickerDelegate = self;
// showing the picker
[self presentModalViewController:picker animated:YES];
// releasing
[picker release];
然后我想要选择所选的电子邮件。
答案 0 :(得分:0)
我不相信有办法让iOS进行这种过滤。请注意,您需要查找各种电子邮件地址 - 您必须遍历您可以获得的字典。使用它是一个PITA肯定,你必须小心不要有内存泄漏。