在Popover中的地址簿

时间:2011-01-27 21:53:23

标签: iphone ipad uipopovercontroller abpeoplepickerview

有没有人有一个例子告诉我如何打开popover中的ABPeoplePickerNavigationController。我有一个正在弹出窗口中使用的NavigationController,但它会打开全屏/模态。

我在这里遗漏了什么,或者我是否需要编写自己的人员选择器以在popover中显示它?

谢谢,

1 个答案:

答案 0 :(得分:3)

创建UIPopoverController,然后添加ABPeoplePickerNavigationController

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