相当于 UIView 的 sizeToFit 方法的 CALayer 是什么?

发布于 2025-01-08 21:35:34 字数 249 浏览 0 评论 0原文

我正在寻找一种方法,让 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 技术交流群。

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

发布评论

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

评论(1

清欢 2025-01-15 21:35:34

我认为你需要实现(覆盖) - (void)layoutSublayers
...
*子类可以重写它
* 提供自己的布局算法,应该设置frame
* 每个子层

- (void)layoutSublayers
{
 // self.frame = aNewSubLayer.bounds
// basically do algorithm for setting frame and bounds for this(self) layer and subLayers here
}

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

- (void)layoutSublayers
{
 // self.frame = aNewSubLayer.bounds
// basically do algorithm for setting frame and bounds for this(self) layer and subLayers here
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文