In Interface Builder I have a view containing an scrollable view-based NSTableView which uses a custom view for its rows, and the custom view contains an NSTextView that is also scrollable.
This is currently the code I use the render the table:
- (NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
{
MyCustomCellView *result = [tableView makeViewWithIdentifier:tableColumn.identifier owner:self];
[result.customFieldTextView setString:...]; // Insert string from row data
return result;
}
Whenever I scroll the table the text views are scrolled to random positions; I think this is because I'm reusing the table cells and the text view is retaining its scroll state from when it's last used. I want to change the behavior so that if I scroll text in row A to position X and scroll to another section of the table the text will scroll back to position X when I return to row A. Is there a way to store the scroll state of a row so I can reload it later?
