UISearchBarDelegate和UITableView不能一起工作?

时间:2012-03-16 14:17:20

标签: objective-c ios cocoa

我有一个带有标准UISearchBar的表视图控制器

我希望将表格中的第一行替换为搜索栏中输入的文本。 我认为这样可行,但事实并非如此:

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{
    // results is a mutable array with an empty string at index 0
    [[self results] replaceObjectAtIndex:0 withObject:searchText];   
    [[self tableView] reloadData];
}

如果我将结果数组记录到控制台,它正确地替换了对象, 但它没有被桌面视图所吸引。

我按照惯例设置了表数据源:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [[self results] count];
}


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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault     reuseIdentifier:CellIdentifier];
    }

    // Configure the cell...

    [[cell textLabel] setText:[[self results] objectAtIndex:[indexPath row]]];

    return cell;
}

如果我只使用insertObjectAtIndex:或insertObject:它会显示结果。只是当我试图替换第一个对象时。 请帮忙! :)

3 个答案:

答案 0 :(得分:0)

好的想通了。 真傻...... searchBar覆盖了tableView的第一行,所以我看不到它的更新。 卫生署。

答案 1 :(得分:-1)

尝试删除此行:if (cell == nil) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; }。我这说的原因是你要分配每个单元格。

这是我收藏的帖子:iPhone: How to purge a cached UITableViewCell

答案 2 :(得分:-1)

您可以尝试重新加载搜索表视图,如下所示:

[self.searchDisplayController.searchResultsTableView reloadData];