Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.