I have a class that inherits from NSSplitViewController
and overrides the splitViewDidResizeSubviews
function.
When I call collapse on a NSSplitViewItem
inside the NSSplitViewController
and I see the NSSplitViewItem
visibly resize the splitViewDidResizeSubviews
function isn't called.
If I resize the window the splitViewDidResizeSubviews
function is called so I know it is implemented correctly.
Can I expect the splitViewDidResizeSubviews
function to be called on a collapse and if so what might I be doing wrong?