所以,这很奇怪。
我有一个UITableView可以从cellForRowAtIndexPath
加载单元格。我想在正确加载当前单元格之前知道前一个单元格的状态,所以我使用CustomCell *cell = (CustomCell *)[tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:indexPath.row-1 inSection:indexPath.section]];
加载先前创建的单元格,但我总是为零。
我不确定发生了什么事,因为这个过程看起来很简单 - 表格视图是不是在cellForRowAtIndexPath
每次运行时保存单元格?