Hello,
I'm developing a tab bar application with one of the tabs to display the contacts.
When I use this code in in the viewDidLoad:
ABPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init];
picker.peoplePickerDelegate = self;
[self presentModalViewController

icker animated:YES];
[picker release];
The contacts are displayed but the tab bar is disappearing, plus if I change tabs and go back to the contacts tab bar item, the contacts are not displaying again.
Can I use the ABPeoplePickerNavigationController in the tab bar and let it load the contacts in any way or I have to get the contacts and fill them in a UITableView.
Thanks a lot for your help,
Anthony Korkmaz