TableViewCell可以有不同的高度吗?

时间:2012-06-21 17:03:15

标签: ios

作为表格的一部分,TableViewCell是否可能具有不同的高度?

如果,那么,如何做到这一点?

2 个答案:

答案 0 :(得分:3)

使用UITableViewDelegate方法:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

答案 1 :(得分:1)

是的,您必须覆盖tableview数据源委托::

的以下函数
- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath