I have a problem which I am trying to solve for quite a while now. Project file provided also.
So I have the following idea, have a sidebar with buttons, and when the buttons are clicked it switches only the right side content.
I originally created a project that has just 1 storyboard. Window launches the first ViewController, with buttons and a custom view.
What i need is when one of the buttons is pressed that custom view is replaced with contents of another ViewController. Just the view, not the entire previous view controller replaced by another one.
How do i do that? Segues? Layers? Please desperately need help as I cant figure out storyboards but want to work with them a lot. This will get me started.
One other option I was thinking is if I used splitview would it be any better? Then i could probably replace right side view sontroller with another one entirely right?

I create this with textlable but is the same.
Now go to appdelegate and create this func "// APP DIRECTOR
// Use: // let act = MainView(nibName: "MainView", bundle: nil) // app.show(act!) func show(_ newController: ControllerType, with message: Parameters? = nil) { let newView = newController.view
} "