一: 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;
}