カスタム UITableViewCell の高さを動的に設定します。テキストに改行が含まれている場合、計算された高さは正しくありません。
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
CGSize constraintSize = {320.0, 20000};
CGSize neededSize = [_beerDetails.notes sizeWithFont:[UIFont systemFontOfSize:10.0f] constrainedToSize:constraintSize lineBreakMode:UILineBreakModeWordWrap];
return neededSize.height + 50;
}