gpt4 book ai didi

iphone - UISearchDisplayController – 无法阻止在搜索栏中键入内容时重新加载表格

转载 作者:行者123 更新时间:2023-12-03 18:38:17 27 4
gpt4 key购买 nike

我正在尝试设置一个搜索显示 Controller 来处理来自网络服务的异步结果。我已经掌握了基本的部分,但遇到了一个非常奇怪的问题,我无法弄清楚。

似乎要为异步设置搜索显示 Controller ,您实际上只需要做两件事:

  1. 返回“否”搜索显示 Controller :shouldReloadTableForSearchString,和
  2. 处理searchBarSearchButtonClicked并关闭表重新加载我自己。

我正在执行这两项操作,但我看到的是,搜索显示 Controller 正在重新加载在搜索栏中输入的第一个字符上的表格,即使我按照 #1 返回“否”。输入后续字符时它不会重新加载。

所以,我的问题是:如何防止搜索显示 Controller 在用户键入时尝试重新加载表格? (特别是在输入的第一个字符上)

我在其他几个问题中看到过这个问题,但我还没有看到该问题的直接答案。在我求助于一堆 UI 修改来解决它之前,我想了解发生了什么或者我做错了什么。

这是我的代码的快速提炼,以显示该问题。当我运行此命令并在搜索栏中输入“abcde”时,在输入“a”后,结果显示为“a #0”、“a #2”等。直到我点击搜索按钮,它们才会再次更新然后你会看到“abcde #0”、“abcde #1”等。当然,期望的结果是,在我点击搜索按钮之前什么也没有发生。

#pragma mark -
#pragma mark UISearchDisplayController Delegate Methods

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString {
return NO;
}

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchScope:(NSInteger)searchOption {
return NO;
}


#pragma mark -
#pragma mark UISearchBarDelegate Methods

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar {
[self.searchDisplayController.searchResultsTableView reloadData];

}


#pragma mark -
#pragma mark Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 20;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.textLabel.text = [self.searchDisplayController.searchBar.text stringByAppendingFormat:@" #%d", indexPath.row];
return cell;
}

谢谢! (顺便说一句,这是我在这里问的第一个问题 - 如果我错过任何礼节,请告诉我:)

最佳答案

这就是 UISearchDisplayController (SDC) 的工作方式。当用户在 searchBar 中输入第一个字符时,searchTable 将被加载并首次显示,从而导致其加载。方法“...shouldReloadTableForSearchString”和“...shouldReloadTableForSearchScope”允许您控制 searchTable 是否在后续字符或范围更改时自动重新加载。

我已完成以下两项操作,以便为第一个角色提供良好的用户体验。稍微免责声明:我确实有这两种方法的实现,但这只是我内存中的实现框架。我可能错过了一个细节,但这应该会让你非常接近。

选项 1:键入第一个字符时,在搜索表中显示“正在加载”单元格。

此选项允许 SDC 在用户键入第一个字符时显示 searchResultsTableView,显示当前搜索/过滤操作的状态

  1. 在 SDC 委托(delegate)类定义中

    • add the iVar BOOL isLoading
    • add the iVar UITableView *searchTableView
  2. searchDisplayController:didLoadSearchResultsTableView

    • set searchTableView = tableView
  3. shouldReloadTableForSearchString/Scope

    • set isLoading = YES
    • call your method to load data in the background
    • return NO
  4. 背景过滤器完成后:

    • set isLoading = NO
    • [searchTableView reloadData]
  5. 在各种 tableView 委托(delegate)方法中,如果存在当前搜索结果或正在后台加载结果,则会响应您希望显示状态的方式。我所做的是:

    • if there are current search results, show results (even if loading/filtering in the background)
    • if there are no search results and isLoading == NO return 1 row and show 'No matches' in a cell
    • if there are no search results and isLoading == YES return 1 row and and show search activity in a cell (I typically use UIActivityIndicatorView)

选项 2:隐藏 searchTableView 并在其位置显示覆盖 View ,直到加载搜索结果

此选项在首次加载时隐藏 searchTableView,并且仅在搜索/过滤完成时重新显示它。我将其定义为选项 1 的附加选项,因为它们可以一起完成,但为了优化您可能不关心在 searchResultsTableView 中显示搜索事件(如果您隐藏表格并显示叠加层)的事情。

  1. 在 SDC 委托(delegate)类定义中

    • same as Option 1
    • add the iVar UIView *searchTableOverlayView
  2. searchDisplayController:didLoadSearchResultsTableView

    • same as Option 1
    • create a UIView to use as an overlay in place of searchTableView containing whatever UI is appropriate for your app and set it to searchTableOverlayView
  3. searchDisplayController:didUnloadSearchResultsTableView

    • release searchTableOverlayView
  4. 在“searchDisplayController:didShowSearchResultsTableView”中(也许可以在searchDisplayController:willShowSearchResultsTableView`中执行此操作

    • if there are search results to display or isLoading == NO
      • seachTableOverlayView.hidden == YES
    • else (if isLoading == YES)
      • searchTableOverlayView.frame == searchResultsTableView.frame
      • add seachTableOverlayView as a subview of searchTableVIew.superview
      • searchTableView.hidden = YES
  5. 背景过滤器完成后

    • same as option 1
    • if there are searchResults to display
      • searchTableCoverView.hidden = YES
      • searchResultsTableView.hidden = NO
    • else
      • searchResultsTableView.hidden = YES
      • searchTableCoverView.hidden = NO
  6. 在各种 tableView 委托(delegate)方法中,如果存在当前搜索结果或正在后台加载结果,则会响应您希望显示状态的方式。我所做的是:

    • same as option 1

关于iphone - UISearchDisplayController – 无法阻止在搜索栏中键入内容时重新加载表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3903718/

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