vote up 1 vote down star
1

I have a document-based Core Data app. My main Core Data entity has several string fields, most of which are bound to NSTextFields, but one is bound to an NSTextView.

I am using the technique for view switching (with multiple view controllers) as explained in the Hillegass book. All of my subviews are controlled by a ManagedViewController, my subclass of NSViewController that has a managedObjectContext field.

My subview exists in a separate nib file. For some reason, the bindings I have set up in that nib are not working--but if I set up the widgets and the bindings in the exact same way in the main nib file instead, they work fine.

See image:

Screenshot

In the main nib file, I have a tree controller whose managedObjectContext is bound to File's Owner's mOC (File's Owner is MyDocument). The NSTextField's value (yes, value--it's not rich text) is bound to treeController.selection.content (where content is a string property of the entity.) No problem. This works fine.

In the second nib file, I have another tree controller whose managedObjectContext is bound to File's Owner's mOC (File's Owner is my ManagedViewController). The NSTextField's value is bound the same way as above.

In my code, I have tested to make sure that the two managedObjectContexts refer to the same object. They do, and it's not nil.

I don't get an error--it's just that the values never bind with NSTextViews in the subview. They're always nil.

Also, I have tried NSTextFields--same problem.

Any ideas on how to make Core Data bindings play nicely with subviews and multiple NIBs?

flag

1 Answer

vote up 2 vote down check

You have two tree controllers. Each has its own knowledge of the selection. Try binding selectionIndexPaths from both of the tree controllers to a property of your document (you'll need to provide a way to get there through the view controller).

link|flag
Thanks for the suggestion, but I'm a little (n00bishly) confused. How is my document going to be able to tell the tree controllers about the current selection? As I understand it, selection only exists with the tree controller and the outline view. – Ellie P. Sep 8 at 2:57
You would add a property to your document to hold those index paths. Remember, you do not have only one tree controll*er*, you have two tree controll*ers*, each with its own idea of what's selected. That's why you need to provide both of them some common object to hold that information. Your document is the object I would appoint to that role. – Peter Hosey Sep 8 at 7:53
Peter--thanks, it ended up working in the end. I thought I misunderstood what you said and that's why it still wasn't working, but it was another bug (or three) that were to blame. – Ellie P. Sep 14 at 16:30

Your Answer

Get an OpenID
or

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