I'm trying to use to a NSSplitView in my Xamarin.Mac Application. I need to add subviews programmatically for business reasons. It works fine, but there is a problem :
When I add a subview, it's added on the SplitView but on top of the precedent one : there's no separation between the subviews. They're superimposed. Here's how I do it :
SplitView.AddSubview(View1);
SplitView.AddSubview(View2);
My splitview is bound to the interface by an outlet type binding. I guess I have to do something manually with the separators but the documentation is really lacking for both Xamarin and Cocoa and I can't find why.