I want to adjust the height of a cell depend on it's contents. I know UITableViewDelegate let you implement the
- (CGFloat) tableView: (UITableView *) tableView
heightForRowAtIndexPath: (NSIndexPath *) indexPath {
return someHeight;
}
but I do not want to hardcode the height. Is there a way to do this dynamically?