调整 UI 元素的大小 Cocoa

发布于 2024-10-16 22:37:49 字数 99 浏览 1 评论 0原文

当用户调整窗口大小时,如何自动调整 UI(在 Interface Builder 中内置)中的元素大小?与调整 Safari 窗口大小时发生的情况类似,WebView 会自动调整大小。

How can I automatically resize the elements in my UI (built in Interface Builder) when the user resizes the window? Similar to what happens when you resize a Safari window, the WebView automatically resizes.

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

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

发布评论

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

评论(1

终遇你 2024-10-23 22:37:49

您想要在视图上设置自动调整大小蒙版。

http://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSView_Class/Reference/NSView.html#//apple_ref/doc/uid/20000014-autoresizingMask

该掩码告诉视图如何在需要时调整自身大小。您可以指定边框是否应保持相对于其父级的位置,以及宽度和高度是否可拉伸(如果需要)。

You want to set the autoresizing mask on your view.

http://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSView_Class/Reference/NSView.html#//apple_ref/doc/uid/20000014-autoresizingMask

This mask tells the view how to resize itself when needed. You specify whether or not the borders should remain where they are relative to its parent, and whether the width and height are stretchable if needed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文