UITableView 从 UISearchBar 更新结果

UITableView updating results from UISearchBar

我有一个带有 UISearchBar 和 UITablevView 的 ViewController。 table 视图仅显示数组中的项目列表,但我希望它显示过滤后的项目列表 filteredArrayUsingPredicate。我可以使用谓词 NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF CONTAINS[cd] %@ OR SELF LIKE[cd] %@", searchText,searchText]; 获取过滤后的数组,当我打印过滤后数组的计数时,项目数是正确的。但是当我尝试在 table 中显示它时,会发生崩溃并出现此错误: *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayI objectAtIndexedSubscript:]: index 3 beyond bounds [0 .. 2]'

这是搜索栏和填充 table:

的代码
@interface ViewController (){
    NSMutableArray<NSString*> *_items;
    NSMutableArray<NSString*> *_filtered;
    bool _searching;
}


@end

@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    self->_items = @[@"iphone",@"ipad",@"ipod",@"imac"];
    self->_filtered = [[NSMutableArray alloc] initWithArray:self->_items];
    self->_table.dataSource = self;
    [self->_table setDelegate:self];
    [self->_search setDelegate:self];
    self->_searching = false;

}
- (void)searchBar:(UISearchBar *)searchBar
    textDidChange:(NSString *)searchText{
    self->_searching = true;
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF CONTAINS[cd] %@ OR SELF LIKE[cd] %@", searchText,searchText];
    self->_filtered = [self->_items filteredArrayUsingPredicate:predicate];
    NSLog(@"%lu",(unsigned long)[self->_filtered count]);

    [self->_table reloadData];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
   return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self->_items.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
    if(self->_searching)
        cell.textLabel.text = self->_filtered[indexPath.row];
    else
        cell.textLabel.text = self->_items[indexPath.row];
    return cell;
}
@end

似乎导致崩溃的行是这个 [self->_table reloadData];- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText 在该方法中,我将搜索设置为 true,在我的 cellForRowAtIndexPath 中,我检查搜索是否为 true,然后显示过滤结果,否则显示项目。但是我不明白为什么如果我重新加载数据并告诉它显示过滤结果会发生崩溃。

如果 _searching 为真,您应该从 numberOfRowsInSection 返回未筛选的项目计数,而您应该返回筛选的项目计数。

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (_searching) {
        return _filtered.count;
    }

    return _items.count;
}