- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath
*)indexPath {
// 解决上拉跳动的问题
if (indexPath.row > 1) {
CGFloat cellHeight = [tableView rectForRowAtIndexPath:[NSIndexPath indexPathForRow:(indexPath.row - 1) inSection:indexPath.section]].size.height;
self.tableView.estimatedRowHeight = cellHeight;
}
//。。。你之前的代码
return cell;
}
网友评论