I'm currently using 2.02. Haven't had a chance to upgrade to 2.03 yet.
It seems to be easily reproducible. I've got a grouped tableview and a SCTableViewSection that I'm putting contact information into (the cells are manually added). The address cell is added like this:
NSString *address = @"Address Line 1\nAddress Line 2\nAddress Line 3\nAddress Line 4";
SCTextViewCell *addressCell = [SCTextViewCell cellWithText:@"" withBoundKey:@"fulladdress" withTextViewTextValue:address];
addressCell.selectable = NO;
addressCell.textView.editable = NO;
addressCell.textView.userInteractionEnabled = NO; // to prevent scrolling the textview
addressCell.textView.textColor = [UIColor blackColor];
addressCell.minimumHeight = 44; // I want the cell to appear as a single line if there is only a single line's worth of data
[addressSection addCell:addressCell];
The actual address data is being pulled from a database, but its format is a single string with line breaks as in the dummy data above.
You can see that I set the minimumHeight property to 44. The SCTextViewCell seems to default to a height that is appropriate for 3 lines of text, but I want it to be smaller if I only have a single line of address data. Setting the minimumHeight to 44 takes care of that, but then the height is wrong for 2 or more lines of text. Similarly, if I leave the minimumHeight at the default, the height is wrong for 4 or more lines of text.