Sorting an NSOutlineView?

That's what I thought, but it doesn't work for me. Maybe I'm missing something.

For NSTableView the declaration is:

<code>- (void) tableView: (NSTableView *) tableView didClickTableColumn: (NSTableColumn *) tableColumn</code>

Would it be the same or would it be:
<code>- (void) outlineView: (NSOutlineView *) outlineView didClickTableColumn: (NSTableColumn *) tableColumn</code>

:confused:
 
it would be the same (the first line). if that doesn't work, I suggest looking at the documentation for NSOutlineView, at the bottom, there all the notifications and delegate methods should be listed.


theo
 
Back
Top