I have a XIB based Cocoa OS X App. In my main window I wish to draw one or more instances of a custom view.
My XIB file has the main window, and I dragged out a Custom View too. I have subclassed NSView and set the class type for the custom view to my new subclass (I called it ChannelControlsView).
I have dragged a Custom View onto the main winodw and set it's class type also to ChannelControlsView as you can see in the attached image.
However when my main window is drawn, the custom view does not appear. What mistake have I made? This is pretty much how I do it on iOS and it works there, so I guess there are some extra steps for OS X apps?