tableView性能优化

一: cell高度问题:
固定高度的cell
self.tableView.rowHeight = 88;
不定高度cell,实现代理
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
     return 88;
}

你可能感兴趣的:(tableView性能优化)