我创建了一次表格单元格,因为由于单元格上的所有图像,它的过程很慢。很少有任何改变,但在极少数情况下我想要完全改变细胞。
获取单元格的代码是
UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:PlaceholderCellIdentifier];
如果没有关联的单元格,我创建一个。
UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:PlaceholderCellIdentifier];
if (cell == nil)
{
//create cell
return cell;
}
else
{
return cell;
}
有没有办法转储与此表关联的所有可重用单元格?所以当我打电话时
[table reloadData];
它会生成一组新的细胞吗?
非常感谢,-代码