解决方法
您可以初始化表视图单元格,将它们放入一个数组precomputedCells和数据源委托方法中tableView:cellForRowAtIndexPath:从数组返回预计算的单元格,而不是调用dequeueReusableCellWithIdentifier:. (与静态表视图中的操作类似)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { return [self.precomputedCells objectAtIndex:indexPath.row]; }
看看可能也是有用的WWDC 2012 Session 211“在iOS上构建并发用户界面”在哪里显示如何填充后台线程中的表视图单元格的内容,同时保持用户界面的响应.