在另一個問題中,它被告知只重新加載所需的UITableViewCells而不是整個表。如何重新加載UITableViewCell
這是怎麼做到的。我必須說,目前我有點無知,因爲我的自定義單元格不是「直接」綁定到tableView。我在cellForRowAtIndexPath方法中實例化它們。
//default
static NSString *CellIdentifier = @"Cell";
TwoRowCell *cell = (TwoRowCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"TwoRowCell" owner:self options:nil];
cell = (TwoRowCell *)[nib objectAtIndex:0];
}
// Configure the cell...
cell.title.text = [dict objectAtIndex:indexPath.row];
cell.value.text = @"";
return cell;
我該如何訪問單元並重新加載單元格。想法:有一些委託方法,並在那裏更新單元格重新加載單元格。目前我重新加載整個表格。
BR, mybecks