I have a NSViewController that contains a NSScrollView, I would like to add the content of that NSScrollView as a NSView defined in the Storyboard but I can't do it in any way.
I do not want to create the content programmatically, I would prefer to define it on the storyboard because the content is static.
@IBOutlet weak var scrollView: NSScrollView!
scrollView.addSubview(//What to add here?)
This question is similar to this referred to iOS programming How to use UIScrollView in Storyboard.