gpt4 book ai didi

iphone - UISearchDisplayController 不显示任何单元格

转载 作者:行者123 更新时间:2023-12-03 21:10:41 28 4
gpt4 key购买 nike

我有一个在 Interface Builder 中正确连接的 UISearchDisplayController。

delegate = Files Owner
searchBar = Search Bar
searchContentsController = Files Owner
searchResultsDataSource = Files Owner
searchResultsDelegate = Files Owner

当我的 UITableView 调用 numberoOfRowsInSection: 时,会返回正确的数字。

但是,我在 cellForRowAtIndexPath: 中的单元格甚至无法到达:

- (UITableViewCell *)tableView:(UITableView *)tblView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

if (tblView == searchController.searchResultsTableView){
NSLog(@"search will go here");
UITableViewCell* cell = [self provideSearchQueryCells:tblView identifer:@"searchQueryCell"];
STSymbol *aSymbol = [self.searchQueryResults objectAtIndex:indexPath.row];

cell.textLabel.text = aSymbol.symbol;
cell.detailTextLabel.text = aSymbol.symbol_title;

return cell;
}
else { ... }

它总是进入 else 条件。

我不太清楚为什么。

最佳答案

我需要创建 UISearchDisplayController 的实例,而不是使用 self.searchDisplayController。

关于iphone - UISearchDisplayController 不显示任何单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3473058/

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