1验靡、正常情況下我們只要設(shè)置這三個(gè)刷新為零就可以了
tableView.estimatedRowHeight = 0;
tableView.estimatedSectionFooterHeight = 0;
tableView.estimatedSectionHeaderHeight = 0;
2、如果和我一樣使用的是自動(dòng)計(jì)算行高 雏节,那么estimatedRowHeight就必須不為0胜嗓。把預(yù)估行高也設(shè)置為自動(dòng)計(jì)算 UITableViewAutomaticDimension 就可以了,完美钩乍!
tableView.rowHeight = UITableViewAutomaticDimension;
tableView.estimatedRowHeight = UITableViewAutomaticDimension;
tableView.estimatedSectionFooterHeight = 0;
tableView.estimatedSectionHeaderHeight = 0;