在iOS 8中自定义ABPeoplePickerNavigationController的导航栏

前端之家收集整理的这篇文章主要介绍了在iOS 8中自定义ABPeoplePickerNavigationController的导航栏前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试自定义ABPeoplePickerNavigationController的导航栏,通过添加自定义UIBarButtonItem作为UINavigationController的顶视图控制器的左右barbuttonitem.此功能在iOS7和以前的版本中正常工作,但不在iOS 8中运行.
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated{

 navigationController.topViewController.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(addNewContact:)];

 navigationController.topViewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(cancel:)];
}

上面的代码正在执行,但没有任何效果. PeoplePickerNavigationController显示其默认导航栏,其默认项为“组”和“取消”按钮.

iOS 8有什么变化?我需要重新实施,我已经做了什么?

编辑:
我在导航堆栈中登录了顶部的ViewController.它被称为CNContactPicker.

解决方法

我会拍一拍:

在ios 8中,我相信苹果已经把这个扩展到了某种程度上.这意味着代码是联系人应用程序.它可能在另一个上下文中运行.

我认为这是因为我读到你不再需要用户的联系人列表访问来使用这些选择器.这意味着它们不是您自己的应用程序的一部分,即扩展名.

可能有一种方法来防止这种情况.我敢打赌,你必须通过一个ABAddressBook到选择器来做到这一点.

原文链接:https://www.f2er.com/iOS/335365.html

猜你在找的iOS相关文章