如何为具有动态高度的表格单元格添加底部阴影?

发布于 2024-11-08 02:48:20 字数 134 浏览 0 评论 0原文

我即将为表格单元格实现底部阴影。然而,我的表格单元格具有动态高度,每个单元格都可以切换以扩展或缩小。我希望将底部阴影固定在每个单元格的底部。

我的问题是,如果我使用 CALayer 中的 BPath 生成阴影,如何将图层锚定到视图的底部?

I am about to implement bottom shadow for table cells. However my table cells have dynamic heights and each cell can be toggled to expand or shrink. I would like to have the bottom shadow anchored to the bottom of each cell.

My question is, if I generate the shadow using BPath in CALayer, how can I anchor the layer to the bottom of a view?

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

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

发布评论

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

评论(1

请别遗忘我 2024-11-15 02:48:20

如果您使用的是 iOS 3.2 或更高版本,则可以在 CALayer 中使用阴影特定属性 - shadowColorshadowOffsetshadowOpacityShadowPathshadowRadius

[cell.layer setShadowOpacity:0.4];

在 iOS 3.2 之前,您必须手动调整阴影层,并且 iOS 中没有自动方法将其锚定到底部。您正在寻找的是 CAConstraintLayoutManager ,它在 OSX 中可用,但在 iOS 中不可用。

If you are using iOS 3.2 or later, you can use the shadow-specific properties in CALayer - shadowColor, shadowOffset, shadowOpacity, shadowPath and shadowRadius.

[cell.layer setShadowOpacity:0.4];

You will have to manually adjust the shadow layer pre-iOS 3.2 and there is no automatic way in iOS to anchor it to the bottom. What you were looking for was CAConstraintLayoutManager which is available in OSX but not in iOS.

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