一: 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;
}
本文标题:tableView性能优化
本文链接:https://www.haomeiwen.com/subject/pexluhtx.html
网友评论