gpt4 book ai didi

ios - UISearchDisplayController 不会触发 didSelectRowAtIndexPath

转载 作者:行者123 更新时间:2023-12-01 19:08:13 24 4
gpt4 key购买 nike

我有一个 UIViewControllerUISearchDisplayController在里面。我让它显示搜索结果表格 View ,但单击任何单元格永远不会触发 didSelectRowAtIndexPath:

#pragma mark - UITableViewDelegate
-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"did select row");
}

我看过这些相关的问题:
  • Why won't my UISearchDisplayController fire the didSelectRowAtIndexPath method?
  • didSelectRowAtIndexPath does not work when uitableview datasource is filtered

  • 但我没有犯同样的错误。 View Controller 实现 UITableViewDelegateUISearchDisplayDelegate . UISearchDisplayController delegate 和 searchResultDelegate 连接到 Storyboard 中的 View Controller 。但为了确保我在 viewDidLoad 中做了以下操作:
    self.searchDisplayController.searchResultsDelegate = self; 
    self.searchDisplayController.delegate = self;

    我什至尝试过:
    self.searchDisplayController.searchResultsTableView.delegate = self;

    searchResultsTableView 是唯一的 UITableView在这个 View Controller 中。

    最佳答案

    您在问题中显示的代码是 didDeselect,而不是 didSelect。因此,如果这就是您的代码中实际包含的内容,那就是问题所在。

    关于ios - UISearchDisplayController 不会触发 didSelectRowAtIndexPath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18495992/

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