UIView框架变化通知

发布于 2024-11-09 20:21:00 字数 224 浏览 2 评论 0原文

UIView 的框架或边界发生变化时是否有任何通知?每当 UIView 的框架发生变化时,我需要计算并设置其自定义子视图的框架,以便它的方面适合超级视图。

NSView 为此目的提供了通知 NSViewFrameDidChangeNotfication。为什么 UIView 没有这个?

Is there any notification when frame or bounds of UIView changes? Whenever frame of a UIView changes, I need to calculate and set the frame of its custom subview so that it aspect fits in the superview.

NSView has the notification NSViewFrameDidChangeNotfication for the purpose. Why is this not there for UIView?

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

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

发布评论

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

评论(1

不寐倦长更 2024-11-16 20:21:00

没有任何通知。您可以子类化 UIView 来覆盖 layoutSubviews,直接进行布局或发送必要的通知。

您是否尝试过设置适当的 autoresizingMask 以便子视图自动调整大小?

There is no notification. You can subclass UIView to override layoutSubviews, to either do the layout directly or send the necessary notification.

Have you tried setting an appropriate autoresizingMask so the subview gets resized automatically?

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