views:

314

answers:

1

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?

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
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