当我将tableView.rowHeight设置为57时,其中一个单元格的行高总是错误的。可能是什么原因?我也尝试过实施委托方法而没有运气。
答案 0 :(得分:1)
在视图控制器中,只需实现以下委托方法
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 57f;
}
答案 1 :(得分:0)
您的自定义单元格高度和heightForRowAtIndexPath返回的高度应该相同。 假设自定义单元格高度为65.并且
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 65f;
}