First of all, I'm new to cocoa development, so I suppose I'm probably trying to get it wrong, but here goes:
I have NSOutlineViewone that loads data from an implementation NSOutlineViewDataSource. I want all the elements to be expanded after they are loaded, but I can’t find the event that was fired after the data loading is completed, so I can send it to him [outlineView expandItem: nil expandChildren: YES].
I looked at the protocol NSOutlineViewDelegate, but I could not find a suitable place for this call. What would be the best approach for this problem?
matei source
share