I have been beating my head against the wall trying to come up with an understanding of tableView:heightOfRow: and I guess I need help. I want to do dynamic row heights for a textView inside the row, and cannot seem to get a handle on the approach. I've read everything I can find, which really isn't much. I can get the rows to size like I want using this method, but only if the table is resized. Rows that are not in view won't be sized right until they are visible and the table is resized.
I've added the tableView:didAddRowView:forRow method and using the same basic idea it ends up squishing the row size to a single line. Doesn't work the same as tableView:heightOfRow: at all, even though it's the same code. I'm guessing that the tableView:didAddRowView:forRow method setting the textView bounds is somehow getting scaled.
Here's my (hopefully relevant) code:
- (CGFloat)tableView:(NSTableView *)tv heightOfRow:(NSInteger)row {
if (tv == dataTableView) {
NSInteger valueCol = [tv columnWithIdentifier:@"value"];
NSTableCellView *valueView = [tv viewAtColumn:valueCol row:row makeIfNecessary:NO];
if (valueView) {
// Working on the interesting column and this row is visible
NSRect bounds = [[valueView textField] bounds];
id value = [[valueView textField] stringValue];
NSFont *fieldFont = [[valueView textField] font];
CGFloat adjustedHeight = [value heightForWidth:bounds.size.width font:fieldFont];
CGFloat rowHeight = [tv rowHeight];
if (adjustedHeight <= rowHeight) adjustedHeight = rowHeight;
return adjustedHeight;
}
}
return [tv rowHeight];
}
- (void)tableView:(NSTableView *)tv didAddRowView:(NSTableRowView *)rowView forRow:(NSInteger)row {
if (tv == dataTableView) {
NSInteger valueCol = [tv columnWithIdentifier:@"value"];
NSTableCellView *colView = [rowView viewAtColumn:valueCol];
NSRect textFieldViewBounds = [[colView textField] bounds];
NSTextField *colTextField = [colView textField];
NSFont *colFont = [colTextField font];
id value = [colTextField stringValue];
CGFloat newHeight = [value heightForWidth:textFieldViewBounds.size.width font:colFont];
NSSize colViewSize = colView.bounds.size;
colViewSize.height = newHeight;
textFieldViewBounds.size.height = newHeight;
[colTextField setBounds:textFieldViewBounds];
}
}
UPDATE: new code is working better, but still has glitches on initial load and sometimes on scroll:
(CGFloat)tableView:(NSTableView *)tv heightOfRow:(NSInteger)row { if (tv == dataTableView) { NSInteger valueCol = [tv columnWithIdentifier:@"value"]; NSTableCellView *valueView = [tv viewAtColumn:valueCol row:row makeIfNecessary:NO];
if (valueView) { // Working on the interesting column NSRect bounds = [[valueView textField] bounds]; id value = [[valueView textField] stringValue]; NSFont *fieldFont = [[valueView textField] font]; CGFloat adjustedHeight = [value heightForWidth:bounds.size.width font:fieldFont]; CGFloat rowHeight = [tv rowHeight]; if (adjustedHeight <= rowHeight) adjustedHeight = rowHeight; return adjustedHeight; }} return [tv rowHeight]; }
(void) tableView:(NSTableView *)tv didAddRowView:(NSTableRowView *)rowView forRow:(NSInteger)row { if (tv == dataTableView) { [dataTableView noteHeightOfRowsWithIndexesChanged:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(row, 1)]]; } }