Implementing parent->child drill down in Cocoa with Core Data bindings that span multiple entities
问题 I'm trying to create a simple interface to my core data model in the style of iTunes Genre browser. I have a model setup with three entities: Genre <-->> Artist <-->> Album . I'd like to simply tie them each to a NSTableView, but it appears as though accessing children relationships from a NSArrayController is not KVC compliant. So, I'm having difficulty communicating the selected Genre objects to the ArtistController. How do you do this? Is it even possible within IB without any custom