У меня есть 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 { ... }
Это всегда идет к другому условию.
Я не совсем уверен, почему.