Search code examples
iosuitableviewdynamicrow-height

What replacement options are there for heightForRowAtIndexPath in a UITableView?


tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath is deprecated according to the iOS docs. It mentions using rowHeight instead, but that property is for all rows. I want to flow the rows' height versus the content's (UILabel) varying size.

Is several custom cell styes my only other option besides heightForRowAtIndexPath?


Solution

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

    Sorry to tell you that...but it isn't deprecated ;)

    EDIT: only thing they are saying is if you have very big tables (1000+ cells) it's better to use rowHeight because of performance issues.