tableView性能优化
2020-03-27 本文已影响0人
noyya
一: cell高度问题:
固定高度的cell
self.tableView.rowHeight = 88;
不定高度cell,实现代理
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 88;
}
self.tableView.rowHeight = 88;
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 88;
}