NSView 在 NSSplitView 上设置最小大小
有没有办法设置(以编程方式或通过界面生成器)NSSplitView 上每个面板(nsviews)的最小尺寸。
Is there a way of setting (programmatically or via interface builder) the minimum size of each of the panels (nsviews) on a NSSplitView.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,请检查 NSSplitViewDelegate 协议的文档。
基本上,您所要做的就是为 NSSplitView 设置委托并实现以下三种方法中的一个或多个:
约束分割位置
可以以您喜欢的任何方式设置委托。在界面构建器中,检查 NSSplitView 具有的
delegate
插座,您所要做的就是将其连接到采用 NSSplitViewDelegate 协议的对象。通过编程方式,您可以在拆分视图上调用setDelegate:
并将所需的委托作为参数传递。Yes, check the documentation for NSSplitViewDelegate Protocol.
Basically all you have to do is to setup a delegate for your NSSplitView and implement one or more of these three methods:
Constraining Split Position
The delegate can be set in any way you like. In interface builder, check the
delegate
outlet that you NSSplitView has, all you have to do is to connect it to the object where you adopted the NSSplitViewDelegate protocol. Programmatically, you can callsetDelegate:
on your split view and pass as argument your desired delegate.