高度和宽度的自动调整大小蒙版

发布于 2025-01-07 15:13:48 字数 331 浏览 1 评论 0原文

我在 xcode 4.4 中使用 cocoa,并且有一个窗口,其中包含从 xib 文件加载的视图。我在其中创建了另一个视图,每当我将窗口全屏显示时,我想调整其大小以填充外部视图。

我尝试过使用:

[self setAutoresizingMask:NSViewWidthSizable];

并且

[self setAutoresizingMask:NSViewHeightSizable];

它们可以工作,但显然这只能在一个方向上调整视图大小。有没有办法两全其美?

提前致谢, 本

Im using cocoa in xcode 4.4 and I have a window which contains a view loaded from an xib file. I have created another view inside it which i would like to resize to fill the outer view whenever i make the window fullscreen.

I have tried using:

[self setAutoresizingMask:NSViewWidthSizable];

And

[self setAutoresizingMask:NSViewHeightSizable];

And they work but obviously this only sizes the view in one direction. Is there a way of doing both?

Thanks in advance,
Ben

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清旖 2025-01-14 15:13:48
[self setAutoresizingMask: (NSViewWidthSizable | NSViewHeightSizable)];
[self setAutoresizingMask: (NSViewWidthSizable | NSViewHeightSizable)];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文