我有一个通过数组过滤的搜索,效果很好。但是,我想在末尾添加一个额外的单元格,基本上说“搜索 %@”,其中 %@ 是搜索查询。单击此单元格时,它将从 php 查询中加载新的表视图。
据我了解,我可能会使用新的 2 个原型单元,其中一个进入新的表格视图,另一个进入视图控制器以获得结果。
但是,每次我尝试任何事情时都会遇到一堆异常。有人可以提供指导吗?
现在我的cellForRowAtIndexPath
代表看起来像这样:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"SimpleTableItem";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}
if (tableView == self.searchDisplayController.searchResultsTableView) {
cell.textLabel.text = [filteredPeople objectAtIndex:indexPath.row];
} else {
cell.textLabel.text = [followers objectAtIndex:indexPath.row];
}
return cell;
}