I have an application which has a layout similar to iTunes. The main window is an NSSplitView.
Depending on what the user selects in the left column, I need to show a different view. For example, in itunes if you click on “Music” you see a list of songs in a table, if you click on “TV Shows” I see a white screen with some text on it.
Been trying to work this out for ages, any pointers in the right direction would be very handy!
In the right-hand pane of your
NSSplitViewyou could place a tab-lessNSTabView. Each tab of the view could contain one of the views you want to display. Then, in your outline view’s delegate, just ask the tab view to display the appropriate view when a particular item is selected.