Address Book in an Popover

1.1k Views Asked by At

Does anyone have an example of tell me how I might open up the ABPeoplePickerNavigationController inside a popover. I have the NavigationController that is being used in the popover doing the opening, but it opens up full screen/modal.

Am I missing something here or will I need to write my own people picker to show it in the popover?

Thanks,

1

There are 1 best solutions below

2
On BEST ANSWER

Create your UIPopoverController, then add an ABPeoplePickerNavigationController.

ABPeoplePickerNavigationController *contacts = [[ABPeoplePickerNavigationController alloc] init];
self.popoverController = [[UIPopoverController alloc] initWithContentViewController:contacts];