弹出窗口中的地址簿

发布于 2024-10-14 12:45:22 字数 171 浏览 3 评论 0原文

有谁有一个例子告诉我如何在弹出窗口中打开 ABPeoplePickerNavigationController 。我有在弹出窗口中使用的 NavigationController 进行打开,但它打开全屏/模式。

我在这里遗漏了一些东西还是我需要编写自己的人员选择器才能在弹出窗口中显示它?

谢谢,

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,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初与友歌 2024-10-21 12:45:22

创建 UIPopoverController,然后添加 ABPeoplePickerNavigationController

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

Create your UIPopoverController, then add an ABPeoplePickerNavigationController.

ABPeoplePickerNavigationController *contacts = [[ABPeoplePickerNavigationController alloc] init];
self.popoverController = [[UIPopoverController alloc] initWithContentViewController:contacts];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文