cocoa:调整拆分视图子视图大小

时间:2012-09-06 04:53:48

标签: cocoa

我想在单击按钮后隐藏子视图,例如。

enter image description here

单击隐藏按钮后,应用程序应该隐藏NSTabView,(不是NSTableView !!!)。但问题是顶部的NSTableView没有调整大小,如下所示: enter image description here

隐藏NSTabView后,如何让NSTableView自动调整大小以填充空白?

关于隐藏底部子视图的代码:

 NSRect frame = [self.customView frame];
frame.size = NSMakeSize(0, 0);
[[self.customView  animator] setFrame:frame];

1 个答案:

答案 0 :(得分:1)

在隐藏按钮的代码中,只包含增加滚动视图(包含表视图)的帧大小的代码。