rowheight

Does the rowHeight of a UITableViewCell account for the height of its separator?

I have a custom UITableViewCell nib that has an image on the left side occupying the entire height of the cell (similar to the grouped table views in the iTunes app). I have noticed that sometimes the icons appear to obscure the separator line at the bottom of the cell they are associated with. My question is this: in computing the hei...

Calculate cell height based on number of lines?

I'd like to make a custom UITableViewCell height using (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath. I'm trying to get the height of the UITableViewCell by multiplying the number of lines in textLabel by the height of each line and then adding 10.0f for the subtitle. I am using the follow...