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

时间:2011-01-04 05:55:53

标签: iphone cocoa-touch uinavigationcontroller

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

我该怎么做呢。

请帮忙。

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

1 个答案:

答案 0 :(得分:1)

答案很简单。

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;这样做对我来说;它使它出现在两个控制器中。