讓我們來看看實現代碼如下的一些標準規範如何dequeueReusableCellWithIdentifier:處理不同的indexPath?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
static int count = 0;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
NSLog(@"count %d", count++);
}
// Configure the cell...
cell.textLabel.text = [array objectAtIndex:indexPath.row];
return cell;
}
如果我們在陣列10個項目,那麼它將ALLOC 10個細胞的每個indexPath.row
我的問題是 請問該功能reuseIdentifier :CellIdentifier知道不同的行?