将 UIAddressBook 与 TabBar 和导航控制器结合使用

发布于 2024-10-10 05:21:22 字数 199 浏览 0 评论 0原文

我想将 UIAddressBook 与 TabBar 和导航控制器一起使用。

我该怎么办呢。

请帮忙。

编辑 我正在使用ABPeoplePickerNavigationController,当我通过presentModalViewController使用它时,它覆盖了整个屏幕,我还使用了一些它覆盖的Tabbar,但我想显示Tabbar

I want to use UIAddressBook with a TabBar and a Navigation Controller.

How do I go about this.

Please help.

edit
I am using ABPeoplePickerNavigationController and when I use this by presentModalViewController it covers whole the screen ,I also used some Tabbar it covers that ,but I want to show that Tabbar

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

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

发布评论

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

评论(1

A君 2024-10-17 05:21:22

答案很简单。

picker = [[ABPeoplePickerNavigationController alloc] init];
// place the delegate of the picker to the control
picker.peoplePickerDelegate = self;
picker.view.frame = self.view.bounds;
[self.view addSubview:picker.view];

技巧是将框架设置为 self.view.bounds;这对我来说是有效的;它使它出现在两个控制器中。

The answer is quite simple.

picker = [[ABPeoplePickerNavigationController alloc] init];
// place the delegate of the picker to the control
picker.peoplePickerDelegate = self;
picker.view.frame = self.view.bounds;
[self.view addSubview:picker.view];

The trick is to set the frame to self.view.bounds; that did it for me; it makes it appear within the two controllers.

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