我使用简单的搜索显示控制器

时间:2012-03-08 11:38:07

标签: objective-c uitableview ios5 uisearchbar

我正在使用简单的搜索显示控制器。我收到这个错误我不知道。这是代码plsss帮助n谢谢!!!!!

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSInteger rows = 0;

    if([tableView isEqual:self.searchDisplayController.searchResultsTableView])
    {
        rows = [self.searchResults count];     
    }
    else
    {
        rows = [self.allItems count];
    }

    return rows;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath    *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];

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

    return cell;
    NSLog(@"the contents of cell are :%@",cell.textLabel.text);
}

-(void) filterContentsForSearchText:(NSString *)searchText scope:(NSString *)scope
{
    NSPredicate *resultsPredicate = [NSPredicate predicateWithFormat:@"SELF contains[cd]  %@",searchText];
    self.searchResults = [self.allItems filteredArrayUsingPredicate:resultsPredicate];
}


//UISearchDisplayController delegate methods
- (BOOL)searchDisplayController:(UISearchDisplayController *)controller    shouldReloadTableForSearchString:(NSString *)searchString
{
    [self filterContentsForSearchText:searchString scope: [[self.searchDisplayController.searchBar scopeButtonTitles] objectAtIndex: [self.searchDisplayController.searchBar selectedScopeButtonIndex]]];

    return YES;
}

-(BOOL)searchDisplayController:(UISearchDisplayController *) controller shouldReloadTableForSearchScope:(NSInteger)searchOption
{
    [self filterContentsForSearchText:[self.searchDisplayController.searchBar text] scope:[[self.searchDisplayController.searchBar scopeButtonTitles] objectAtIndex:searchOption]];

    return YES;
}

错误如下:

  

2012-03-08 15:37:18.905 SearchViewController [1082:fe03] *断言失败 - [UISearchResultsTableView _createPreparedCellForGlobalRow:withIndexPath:],/ SourceCache / UIKit_Sim / UIKit-1912.3 /UITableView.m:6072   2012-03-08 15:37:18.907 SearchViewController [1082:fe03] * 由于未捕获的异常'NSInternalInconsistencyException'而终止应用程序,原因:'UITableView dataSource必须从tableView返回一个单元格:cellForRowAtIndexPath:'

3 个答案:

答案 0 :(得分:7)

而不是: UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@“cell”];

试试这个: UITableViewCell * cell = [self.tableView dequeueReusableCellWithIdentifier:@“cell”];

搜索结果无论如何都会提供一个新的tableview,因为它不能识别以前的标识符,因为旧的tableview不在问题中。

答案 1 :(得分:4)

原因是'UITableView dataSource必须从tableView:cellForRowAtIndexPath:'返回一个单元格,因为在提问之前你自己轻轻地解释了一下。 因此,当您要求表格视图将可重复使用的单元格出列时,请查看此方法的顶部

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];

考虑如果表视图没有可以自由使用的早期创建的单元格会发生什么。当你创建你的UITableViewController它绝对没有什么可以提供给你,它是空的。它返回nil。

因此,如果表格视图无法为您提供“已使用”,请在您要求出列的行下方添加以下行并创建“全新”单元格。

if (!cell) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"] autorelease]; //if you compile with ARC, drop autorelease
}

您使用@“cell”作为您的单元格ID,因此请至少考虑使用局部变量CellIdentifier来避免双重输入“magic”字符串。并且看一下Table View Programming guide因为在构建表视图时重用单元格是最基本的功能。祝你好运!

答案 2 :(得分:2)

我一会儿就遇到了这个问题,把它固定在一个地方,忘了它,不得不重新发现解决方案。

我的解决方案是使用作为arg传递给tableView:cellForRowAtIndexPath:的tableView,而是使用属于封闭tableViewController类的tableView。

在下面的示例中,刚刚更改了条件,即条件数据管理器此类实例现在返回的结果与以前略有不同,我发现(或重新发现,如果您愿意)dequeueResuableCellWithIdentifier:正在返回一个好的单元格第一种情况总是如此,但只有当tableView不是第二次调用的searchResultsTableView时才返回一个好的单元格。

并且答案在于我的storyboard中的tableViewController中的tableView具有我想要使用的原型单元格,其中searchResultsTableView表示的tableView没有!

- (UITableViewCell *)tableView:(UITableView*)tableView
         cellForRowAtIndexPath:(NSIndexPath*)indexPath
{
    BOOL isSearching = tableView == self.searchDisplayController.searchResultsTableView;
    UITableViewCell* cell;
    BOOL isAnchor = conditionThatDoesntMatterForThisExample;

    if (isAnchor)
    {
        cell = [self.tableView dequeueReusableCellWithIdentifier:PlainCell];
    }
    else
    {
        cell = [tableView dequeueReusableCellWithIdentifier:ReplyCell];
    }