Let's say I have a split view, and I want to fill half of it with a table view (a fairly common use case, I would think). Is there any way to tell the table view to size itself to fit the split view or do I really have to size it manually?
|
|
|
|
|
|
|
As far as I know, doing it manually is the only way to go. However, if you turn on "snap to cocoa guidelines", the inner view will snap to the edges of the enclosing view as you drag towards them. This makes it easier than having to manually mouse the edges into place, or manually edit the sizes to match. |
||
|
|
|
|
It's generally easier to create the subviews first, then use the Layout/Embed Objects In/Split View menu item to create the split view around them. |
||
|
|
|
|
I've done this, the way Jon Hess mentions first. Assuming you're using Interface Builder version 3:
VoilĂ :-) |
||
|
|
|
|
You can set all of the springs and struts of the table view to "on" in the size inspector and that will cause the table view to fill the split view. Alternatively, you can use the outline view in the main document window to place the tableview's enclosing scroll view directly into the splitview instead of in an intermediary custom view. |
||
|
|
