Re: NSSplitView similar to Xcode's editor/debug area split view

2013-07-03 Thread Chuck Soper
Hi Andy, Thanks for this code snippet. It was exactly what I was asking for, but it didn't fit for my specific situation. I now have a split view with three subviews with different holding priorities. The only way I could get this to work was to use constraints, and animate them. It's mostly strai

Re: NSSplitView similar to Xcode's editor/debug area split view

2013-07-02 Thread Miron Iancu
ng to implement an NSSplitView similar to Xcode's editor/debug > area split view. I'm implementing a split view with two views (one above > the other). > > Like Xcode, I need my 'Debug Area' view to: > a) Have a minimum height. > b) Show or hide view with animati

Re: NSSplitView similar to Xcode's editor/debug area split view

2013-06-28 Thread Andy Lee
Hi Chuck, On Jun 26, 2013, at 8:30 PM, Chuck Soper wrote: > 2. How should I animate the showing or hiding of the 'debug area' view? I do by sending setFrame: to the two subviews' animator proxies instead of to the view itself. // Assumes the split view has two subviews, one above the other. -

NSSplitView similar to Xcode's editor/debug area split view

2013-06-26 Thread Chuck Soper
I'm trying to implement an NSSplitView similar to Xcode's editor/debug area split view. I'm implementing a split view with two views (one above the other). Like Xcode, I need my 'Debug Area' view to: a) Have a minimum height. b) Show or hide view with animation by click