UIView框架变化通知
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有任何通知。您可以子类化 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?