gpt4 book ai didi

iPhone:ABPeoplePickerNavigationController 无法在 UITabBarController 中正确显示

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:15:53 25 4
gpt4 key购买 nike

我正在尝试在 UITabBarController 中显示 iPhone 通讯录中的联系人。我到目前为止:

- (void)contacts 
{
ABPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init];
// place the delegate of the picker to the controller
picker.peoplePickerDelegate = self;

CGRect newFrame = self.tabBarController.view.frame;
newFrame.size.height = newFrame.size.height - 49;
picker.view.frame = newFrame;
[picker setAccessibilityViewIsModal:YES];
// showing the picker
[self.tabBarController presentModalViewController:picker animated:NO];
}

调用:

-(void)viewWillAppear:(BOOL)animated
{
[self contacts];
}

结果我得到了这个:

enter image description here

  1. 我看不到标签
  2. 我的标签样式是黑色的,但选择器是蓝色的。
  3. 有取消按钮。

如何使选项卡可见、样式变黑并去掉取消按钮?

提前谢谢你。

编辑:

改变方法后:

-(void)contacts
{
ABPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init];
picker.peoplePickerDelegate = self;
picker.navigationBar.tintColor=[UIColor blackColor];
// Display only a person's phone, email, and birthdate
NSArray *displayedItems = [NSArray arrayWithObjects:[NSNumber numberWithInt:kABPersonPhoneProperty], nil];
picker.displayedProperties = displayedItems;
// Show the picker
picker.navigationBar.hidden=YES;
CGRect newFrame = picker.view.frame;
newFrame.size.height = newFrame.size.height - 49;
picker.view.frame = newFrame;

[self.tabBarController.view addSubview:picker.view];

}

我得到了这个结果:

enter image description here

是的,联系人位于选项卡内,但现在有问题:

  1. 当我触摸带有联系人的 tableView 时,联系人完全消失了。
  2. 当我切换标签时,联系人 View 并没有消失,我可以在所有标签中看到它。
  3. UISearchbar 的一半保持隐藏状态。

现在邪恶在哪里?

最佳答案

您在 tabBarController 之上呈现 View Controller ,这就是隐藏 tabBar 的原因。尝试类似的东西:

UIViewController *controller = [tabBarController.viewControllers objectAtIndex:0]; // Let's assume this is the desired view controller that should display the ABPeoplePickerNavigationController
[controller presentModalViewController:picker animated:NO];

请记住,在标签栏 Controller 下呈现 UIViewController(子类)可能会导致一些非常奇怪的用户体验。此外,您必须为 ABPeoplePickerNavigationController 设置一个 TableView 底部插图(与 tabBar 高度相同,通常为 49 像素),以便查看表的最后一个条目。

ABPeoplePickerNavigationController 有一个 navigationBar 属性,您可以将它的色调更改为(例如)黑色:

ABPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init];
picker.navigationBar.tintColor = [UIColor blackColor];

我怀疑您是否能够删除取消按钮而不会在应用程序批准过程中被拒绝。此外,ABPeoplePickerNavigationController 中没有取消按钮的属性,因此您必须从例如浏览 navigationBar subview 。

关于iPhone:ABPeoplePickerNavigationController 无法在 UITabBarController 中正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10342624/

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