- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *reuseIdentifier = @"cellReuse";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reuseIdentifier];
}
NSManagedObject *manageObject = [self.fetchResultController objectAtIndexPath:indexPath];
cell.textLabel.text = [manageObject valueForKey:@"title"];
cell.detailTextLabel.text = [manageObject valueForKey:@"subtitle"];
return cell;
}
我从一本书中读到单元格是一种“可重复使用的视图”。我在理解“可重用”方面有一些问题。
有人可以简单地解释一下细胞的机制吗?