高度和宽度的自动调整大小蒙版
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)