标签: iphone
在我的heightForRowAtIndexPath方法中,我想仅为某些行自定义高度。对于其他人,我希望框架要小心。我该怎么做?
heightForRowAtIndexPath
答案 0 :(得分:43)
您可以返回tableView.rowHeight,除非您更改它,否则设置为默认值。
tableView.rowHeight
答案 1 :(得分:6)
返回常量UITableViewAutomaticDimension。
UITableViewAutomaticDimension
自iOS 5.0起可用,documented here。