Exploring Nested Views In Cocoa Part 1
I've been playing with Cocoa development, and I've been having a hard time figuring out the One True Way to handle Nested Views and Controllers and cleanly compose them all together.
The below image is what we're attempting to create.
Nested View is defined in a separate xib file, and backed by NVNestedViewOneView : NSView.
The xib file also includes a reference to NVNestedViewOneController with the controller referencing the view and vice versa.
You'd think that this would all work, but sadly our nested view doesn't actually *render*.
Stay tuned as you get to follow along with my idiocy! Woo!
You can get the code at : https://github.com/ecoffey/NestedView