iOS:调整视图大小后更改UITableViewCell的高度(使用Autolayouts)

时间:2015-10-13 11:07:56

标签: ios objective-c uitableview autolayout

我有UITableViewController静态单元格的数量。我想将UITableView划分为相同高度的单元格。

如果我有静态UITableView。我会这样做:

tableviewcontroller.tableView.rowHeight = tableviewcontroller.tableView.frame.size.height/cellsCount;

但如果我动态调整Autolayouts的视图,这是一个坏主意。

我想做这样的事情 enter image description here

1 个答案:

答案 0 :(得分:0)

使用

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{   
    return yourCellHeight;
}

最终如果需要

[tableView ReloadData];