tableView 的cell 重用机制

-------> dequeueResableCellWithIdentifier方法

//一般对table view的数据都进行绑定,需要填充多个cell,自动调用n次 ,超过屏幕 ,需要对cell 设置重用机制.

- (UITableViewCell *)tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)indexPath {

UITableViewCell *cell = [table dequeueReusableCellWithIdentifier:@"FlipsideCellIdentifier"];

if (cell == nil) {

cell = [[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"FlipsideCellIdentifier"] autorelease];    //  如果是在ARC模式下不需要写autorelease.

}

cell.text = [soundSignatures objectAtIndex:indexPath.row];

return cell;

}

你可能感兴趣的:(tableView 的cell 重用机制)