UITableView刷新cell时会上下闪一下

在使用reloadRowsAtIndexPaths: withRowAnimation:刷新cell时会闪一下。

解决办法: 使用预估高度

tableView.rowHeight = 78.0f;
tableView.estimatedRowHeight = 78.0f; 
tableView.estimatedSectionHeaderHeight = 45;

你可能感兴趣的:(UITableView刷新cell时会上下闪一下)