ユーザーが電子メールを含むよりも連絡先のみを表示できる画面を提供する方法はありますか? (デフォルトでは、この画面にすべての連絡先が表示されるため)
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];
次に、選択したメールを受け取りたいと思います。