我正在使用ABPeoplePickerNavigationController
来显示联系人。
我还使用UISearchDisplayController
搜索联系人。
我想隐藏ABPeoplePickerNavigationController
的选项,例如群组,所有联系人和取消选项
是否有任何默认属性可以隐藏此内容。因为我不想在我的应用中使用这些选项。
请提出任何想法。在此先感谢。
答案 0 :(得分:0)
试试这个:
ABPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init];
picker.delegate = self
[self presentViewController:picker animated:YES completion:nil];
- (void)navigationController:(UINavigationController*)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
if([navigationController isKindOfClass:[ABPeoplePickerNavigationController class]]){
navigationController.topViewController.navigationItem.rightBarButtonItem = nil;
navigationController.topViewController.title = @"";
}
}