Search code examples
iphoneipaduipopovercontrollerabpeoplepickerview

Address Book in an Popover


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,


Solution

  • Create your UIPopoverController, then add an ABPeoplePickerNavigationController.

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