I've created in Interface Builder a NSSplitView with two subviews. I want the left-side view to have fixed width. I've tried to define autosizing rules for both subviews but the left subview still changes width on window resizing (split view fills up a window). May be that caused by NSSplitView's Autoresizes Subviews property? (I can't uncheck it). What can I do?
views:
314answers:
1
A:
The behavior that you want required some code that you can do on the NSSplitView's delegate. However, you can have the same result using BWToolKit.
gcamp
2010-01-10 22:37:12
Thanks - it was helpful :) Maybe anyone will be interested in article on Cocoa With Love about NSSplitView's delegate: http://cocoawithlove.com/2009/09/nssplitview-delegate-for-priority-based.html
dzolanta
2010-01-11 09:27:09