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
?
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.