如何在NSSplitViewController中禁用调整拆分视图项的大小

时间:2015-12-18 09:44:33

标签: macos nssplitviewcontroller

我有一个拆分视图控制器。我让一切都有效但只有一件事:

用户可以拖动中心条以调整底部视图的大小。

我一直在摆弄故事板一段时间,但没有办法禁用它。

normal split view

bottom down

bottom up

有没有办法阻止它像上图一样移动?感谢。

1 个答案:

答案 0 :(得分:0)

您的图像坏了,但这是我的猜想

override func splitView(_ splitView: NSSplitView, effectiveRect proposedEffectiveRect: NSRect, forDrawnRect drawnRect: NSRect, ofDividerAt dividerIndex: Int) -> NSRect {
    return NSZeroRect
}