我正在尝试使用大型中央调度过滤 NSArray。我能够过滤数组,当我调用[tableView reloadData]
正确的值时,NSLog 正在打印;但是视图显示了以前的值。
例如,如果我的项目集合是Red, Orange, Yellow
并且我过滤了r
,则 NSLogs 将打印有 2 行并且单元格是Red
and Orange
,但所有三个单元格都将显示。当搜索变为 时ra
,NSLog 显示只有 1 行被调用Orange
,但单元格Red
和Orange
被显示;
- (void)filterItems:(NSString *)pattern{
__weak MYSearchViewController *weakSelf = self;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSMutableArray *items = [weakSelf.items copy];
//lots of code to filter the items
dispatch_async(dispatch_get_main_queue(), ^{
weakSelf.items = [items copy];
[weakSelf.tableView reloadData];
});
});
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSLog(@"Rows: %d",[self.items count]);
return [self.items count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"MYCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifier];
}
NSInteger row = [indexPath row];
MYItem *item = [self.items objectAtIndex:row];
//code to setup cell
NSLog(@"Row %d, Item %@, Cell %d", row, item.info, cell.tag);
return cell;
}