如何调用heightForRowAtIndexPath的默认实现?

时间:2010-06-30 12:24:28

标签: iphone

在我的heightForRowAtIndexPath方法中,我想仅为某些行自定义高度。对于其他人,我希望框架要小心。我该怎么做?

2 个答案:

答案 0 :(得分:43)

您可以返回tableView.rowHeight,除非您更改它,否则设置为默认值。

答案 1 :(得分:6)

返回常量UITableViewAutomaticDimension

自iOS 5.0起可用,documented here