I have a NSSplitViewController with 2 view controllers as splitViewItems.
This works fine.
Now I would like to set an own SplitViewController Class for my Splitviewcontroller in the storyboard. I give it my own class start the app. But now I only see an empty window.
Have I set my splitviewcontroller now programmatically, if I set my own splitviewcontroller class?
If yes, which code I have to use to show the two view controllers in my splitview controller again?
UPDATE
import Cocoa
class SplitViewController: NSSplitViewController {
override func viewDidLoad() {
print("Test")
}
}
