> Also, if I want to know when the user has completed the divider
> movement, how would I find that out? I suspect I'd need to subclass
> NSSplitView method that handles the mouse events...
Yes; specifically, you should look at -mouseDown:, since NSSplitView
runs an event loop instead of using
This is normal behaviour. Generally you want to handle "live
resizing", and these notifications allow for that.
"splitViewWillResizeSubviews" happens before the actual resize happens
and "splitViewDidResizeSubviews" happens after.
I'll defer to someone else to answer your other question.
O