Sorry for asking such a noob question but I can't figure this out.
I have started to build an interface using XCode's IB with it's integration with Xamarin Studio. But so far everything has been put into the same MainWindow.xib file and it's starting to grow too big. I figured that I'd easily divide the interface into separate views but I can't get my views to show up.
Here's what I do:
In Xamarin Studio I click "Add new file" and choose Cocoa View with Controller. I get an empty view and populate it with some stuff like labels, images and buttons.
I then go to my MainWindow.xib file and put in a CustomView object. I then change the class of this view to the name of my custom object (the view, not the controller).
Both in the IB interface and at runtime the custom view is just empty. No buttons or labels.
What am I doing wrong?