hello
i have a TabBar in my application and i want to load the address book into one of the tabs, i use this:
the problem is that the address book is covering the tab bar , how can i solve this?
thank you
i have a TabBar in my application and i want to load the address book into one of the tabs, i use this:
Code:
- (void)showPicker {
ABPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init];
// place the delegate of the picker to the controller
picker.peoplePickerDelegate = self;
// showing the picker
[self presentModalViewController:picker animated:NO];
// releasing
[picker release];
}
the problem is that the address book is covering the tab bar , how can i solve this?
thank you