Re: NSSplitView splitViewDidResizeSubviews

2009-03-03 Thread Benjamin Stiglitz
> 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

Re: NSSplitView splitViewDidResizeSubviews

2009-02-28 Thread Andrew Yeaton
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