我有一个UITableView,其中包含一个UITableViewCells列表。我设置了UITableViewCells的高度。
答案 0 :(得分:0)
你的UITableViewDelegate应该实现tableView:heightForRowAtIndexPath:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return [indexPath row] * 20;// or whatever you need to set height
}
或
如果所有单元格都相同,请将UITableView上的rowHeight属性设置为单元格的大小。如果它们根据内容完全不同,那么您将必须实现-tableView:heightForRowAtIndexPath:并根据您的数据源计算每行的高度。