我有一个UITableView
使用数组列出数据的。这工作正常。我也有一个UISearchBar
for search in that tableview
。当 tableviews 数组中的数据匹配时,这些行将添加到另一个可变数组中,并cellForRowAtIndexPath:
改为显示来自该可变数组的数据。
但是numberOfRowsInSection:
当我调用 reloadData 时永远不会调用它。因此tableview
滚动时崩溃,因为它试图从可变数组中获取数据,但是对于原始数组中的行(它有更多项目)
我已经调试了一段时间,但看在上帝的份上,找不到原因。Datasource 和 Delegate 是挂钩的tableview
,因为它可以显示原始数组中的数据。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSLog(@"isSearching: %d", isSearching);
// Return the number of rows in the section.
if(!isSearching)
return [originalArray count];
NSLog(@"isSearching - Return searchCopyListOfItems");
return [searchCopyListOfItems count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}
if(!searching)
cell.textLabel.text = [originalArray objectAtIndex:indexPath.row];
else
cell.textLabel.text = [searchCopyListOfItems objectAtIndex:indexPath.row];
return cell;
}