I noticed that my subclass os NSTreeController runs newObject only when the add: method is called but never for addChild:
I found this thread discussing the very same issue. Though in this case the user is using the tree controller in Core Data mode, however I have mine set to use a specific Class (object mode).
What reason could there be for addChild: not using the newObject method?
If newObject gets called for add: I see no reason why it shouldn't work for addChild:. I confirmed this behavior in Apple's SourceView demo app by replacing OutlineController with a subclass, and connecting buttons to add: and addChild: - again only add: calls newObject. I find this really really really weird behavior.
Found the answer in the docs:
At least it says that's the way it is. Though it contradicts the Class Reference. And they neglected to explain why it is the way it is.