gpt4 book ai didi

ios - 在 iOS 7 的 Popover 中通过 TableView 搜索的问题

转载 作者:行者123 更新时间:2023-11-29 12:51:51 24 4
gpt4 key购买 nike

我在 Popover 中搜索 tableview 时遇到问题。

在表格 View 中显示搜索记录后,当我滚动时,它会显示另一个没有搜索栏的表格 View ,只有向后滚动的那个是固定的。

当我删除搜索文本时它工作正常。

对于 iPhone,它工作正常。只有当我在 Popover View 中显示表格 View 时才会出现问题。

(我想添加屏幕截图,但我没有那么多声誉 :()

请浏览此link用于屏幕截图


代码

if(![popoverController isPopoverVisible]){

newTimeEntry *timeEntryController = [[newTimeEntry alloc] initWithNibName:@"newTimeEntry" bundle:nil];
timeEntryController.timeEntryDelegate=self;

UINavigationController* addNavController;
addNavController = [[UINavigationController alloc] initWithRootViewController:timeEntryController];

popoverController = [[UIPopoverController alloc] initWithContentViewController:addNavController];

timeEntryController.popoverObj=popoverController;

[popoverController setPopoverContentSize:CGSizeMake(320.0f,520.0f)];

[popoverController presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];

}else{
[popoverController dismissPopoverAnimated:YES];
}

最佳答案

下面解决了我的问题:)

  • (void)searchDisplayController:(UISearchDisplayController *) Controller

willShowSearchResultsTableView:(UITableView *)tableView

{

tableView.backgroundColor = [UIColor whiteColor];

关于ios - 在 iOS 7 的 Popover 中通过 TableView 搜索的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22270580/

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