I wand to know the content of the cell when returning the heightForRowAtIndexPath. In this function how do I get the cell object?
- (CGFloat) tableView:(UITa
Call self (the delegate) rather than the tableView itself.
id cell = [self tableView:tableView cellForRowAtIndexPath:indexPath];