将公开指示箭头添加到搜索显示控制器中的单元格

时间:2013-07-29 02:06:03

标签: cocoa-touch uitableview

问题:如何向搜索显示控制器中的单元格添加公开指示箭头?

TableView 中,您只需设置原型单元格,但对于搜索显示控制器内的单元格来说,它似乎不是那么简单。

以下是表格视图代码:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (tableView == self.searchDisplayController.searchResultsTableView) {
        return [searchResults count];

    } else {
        return [dangerousItems count];

    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"DangerousCell";


    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
    }

    if (tableView == self.searchDisplayController.searchResultsTableView) {
        cell.textLabel.text = [searchResults objectAtIndex:indexPath.row];
    } else {
        cell.textLabel.text = [dangerousItems objectAtIndex:indexPath.row];
    }

    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (tableView == self.searchDisplayController.searchResultsTableView) {
        [self performSegueWithIdentifier: @"showDangerousItemDetail" sender: self];
    }
}

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    if ([segue.identifier isEqualToString:@"showDangerousItemDetail"]) {
        DangerousGoodsDetailViewController *destViewController = segue.destinationViewController;

        NSIndexPath *indexPath = nil;

        if ([self.searchDisplayController isActive]) {
            indexPath = [self.searchDisplayController.searchResultsTableView indexPathForSelectedRow];
            destViewController.dangerousItemName = [searchResults objectAtIndex:indexPath.row];
            destViewController.dangerousItemImage = [dangerousImage objectAtIndex:indexPath.row];

        } else {
            indexPath = [self.tableView indexPathForSelectedRow];
            destViewController.dangerousItemName = [dangerousItems objectAtIndex:indexPath.row];
            destViewController.dangerousItemImage = [dangerousImage objectAtIndex:indexPath.row];
        }
    }

}

1 个答案:

答案 0 :(得分:1)

UISearchDisplayController有一个searchResultsDataSource属性,这是一个常规的UITableViewDataSource。您有责任提供其实现(通常,这是搜索显示控制器所附加的原始视图控制器)。

数据源必须实现tableView:cellForRowAtIndexPath:。您可以在此处生成表示搜索结果的单元格。当您创建需要公开指示符的单元格时,请在从方法返回单元格之前在附件视图中添加该指示符。