I have a tabbed application. I want AddressBook to appear in one of my tabs. The following code works, but AddressBook appears not in the tab itself, but in the entire view of the application.
_addressBookController = [[ABPeoplePickerNavigationController alloc] init];
[_addressBookController setPeoplePickerDelegate:self];
[self presentViewController:_addressBookController animated:YES completion:nil];