在UITableView中有哪些替换选项可用于heightForRowAtIndexPath?

时间:2010-11-21 13:58:42

标签: ios uitableview dynamic row-height

根据iOS文档不推荐使用tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath。它提到使用rowHeight,但该属性适用于所有行。我希望将行的高度与内容(UILabel)的大小不同。

除了heightForRowAtIndexPath之外,还有几个自定义单元格styes是唯一的其他选项吗?

1 个答案:

答案 0 :(得分:1)

http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewDelegate_Protocol/Reference/Reference.html

很抱歉告诉你......但它没有被弃用;)

编辑:他们唯一说的是,如果你有非常大的表(1000多个单元格),最好使用rowHeight,因为性能问题。