相当于 UIView 的 sizeToFit 方法的 CALayer 是什么?
我正在寻找一种方法,让 CALayer 在其子层发生变化时(这意味着当任何子层的边界发生变化或子层数组本身发生变化时)调整自身大小。
当我之前使用视图时,我通过在自定义 UIView 子类中实现 sizeThatFits 来实现这一点,每当视图的子视图发生更改时, sizeToFit 都会自动调用该子类。
由于 CALayer 具有 sizeThatFits 等效方法 PreferredSize,因此我很惊讶没有找到 sizeToFit 等效方法。
I'm searching for a way to let a CALayer resize itself whenever its sublayers change (which means either when the bounds of any sublayer change or when the sublayer array itself changes).
When i worked with views before, i managed that through implementing sizeThatFits in my custom UIView subclass, which was called automatically by sizeToFit whenever the view's subviews changed.
Since CALayer has the sizeThatFits-equivalent-method preferredSize, i was surprised not to find a sizeToFit-equivalent.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你需要实现(覆盖)
- (void)layoutSublayers
...
*子类可以重写它
* 提供自己的布局算法,应该设置frame
* 每个子层
I think you need to implement(override) the
- (void)layoutSublayers
...
*Subclasses can override this to
* provide their own layout algorithm, which should set the frame of
* each sublayer