如何为具有动态高度的表格单元格添加底部阴影?
我即将为表格单元格实现底部阴影。然而,我的表格单元格具有动态高度,每个单元格都可以切换以扩展或缩小。我希望将底部阴影固定在每个单元格的底部。
我的问题是,如果我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 iOS 3.2 或更高版本,则可以在 CALayer 中使用阴影特定属性 -
shadowColor
、shadowOffset
、shadowOpacity
、ShadowPath
和shadowRadius
。在 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
andshadowRadius
.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.