gpt4 book ai didi

iphone - ABPeoplePickerNavigationController 隐藏取消按钮

转载 作者:技术小花猫 更新时间:2023-10-29 11:17:05 26 4
gpt4 key购买 nike

我正在对 ABPeoplePickerNavigationController 进行子类化,我想知道如何隐藏正确的工具栏项“Cancel”?

我一直在寻找,但找不到合适的解决方案。

谢谢!

最佳答案

使用 <UINavigationControllerDelegate>

ABPeoplePickerNavigationController alloc 之后委托(delegate)给自己。

peoplePicker.delegate = self;

我们需要覆盖 UINavigationController的委托(delegate)方法。

// Called when the navigation controller shows a new top view controller via a push, pop or setting of the view controller stack.

- (void)navigationController:(UINavigationController*)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
if([navigationController isKindOfClass:[ABPeoplePickerNavigationController class]])
navigationController.topViewController.navigationItem.rightBarButtonItem = nil;
}

关于iphone - ABPeoplePickerNavigationController 隐藏取消按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15225086/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com