I'm trying to bind an NSTreeController's "arrangedObjects" to a custom view's "managedContent" (so that it can show a custom outline, for instance). In the setter...

- (void)setManagedContent:(NSArray *)newManagedContentArray {
    //code goes here
}

nothing ends up working since newManagedContentArray ("arrangedObjects") apparently isn't an NSArray (and therefore I can't addObject: etc. etc.) Instead it's showing up as an NSControllerTreeProxy. My question is, what exactly is "arrangedObjects" supposed to be? Am I supposed to bind to it? If so, how?

link|improve this question

what are you trying to do? – hamstergene Nov 24 '11 at 7:00
feedback

1 Answer

up vote 1 down vote accepted

arrangedObjects isn't supposed to be an array for NSTreeController. It states this quite clearly in the documentation. What you do get is the proxy object you are seeing, which you can use the childNodes and descendantNodeAtIndexPath: method on to get your tree structure.

link|improve this answer
Oh whoops. I looked at the documentation and I feel... "stupid" now. Thanks. – Vervious Nov 24 '11 at 17:04
Don't - you should see the answer I was typing before I checked the docs! – jrturton Nov 24 '11 at 17:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.