I want to show the addressbook as a tabbar item so I defined this code in the delegate for the tab bar:

Contacts = [[ABPeoplePickerNavigationController alloc] init];

Contacts.tabBarItem.image = [UIImage imageNamed:@"Contact.png"];

Contacts.tabBarItem.title = NSLocalizedStringFromTable (@"Label_Contact_String" , language , @"");

//[Contacts.navigationController.navigationBar setBarStyle:UIBarStyleBlack];
Contacts.peoplePickerDelegate = self;   
[rootViewController addObject:Contacts];

The contacts list is shown but there is a cancel button in navigation bar that is not useful and I can't remove it from navigation bar. Can you help me? Thanks

link|improve this question

17% accept rate
feedback

1 Answer

The ABPeoplePickerNavigationController inherits from UINavigationController, so methods that work on UINavigationControllers should work on ABPeoplePickerNavigationController, unless it overrides them, which is highly likely.

You should be able to do this:

Contacts.navigationController.navigationBar.topItem.rightBarButtonItem = nil;

(that's if the cancel button is on the right, if it's on the left, just change right to left)

However it's highly likely you won't be able to and you'll just have to accept the cancel button

link|improve this answer
1  
thanks, but it is not working! – Fa.Shapouri Feb 28 '11 at 14:09
In that case it's not possible. It was a long shot. You will gave to accept the cancel button is not removable. – Jonathan. Feb 28 '11 at 15:56
Ok, thanks for your replay. – Fa.Shapouri Mar 1 '11 at 5:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.