如何在swift中仅使用角半径为3条边添加阴影?
Posted
技术标签:
【中文标题】如何在swift中仅使用角半径为3条边添加阴影?【英文标题】:How to add shadow for 3 sides only with corner radius in swift? 【发布时间】:2021-07-02 06:52:40 【问题描述】:我有一个 UIView,我想为带角半径的前导、尾随和底部添加阴影。我已经添加了功能,但是没有用。
extension UIView
func drawShadowwithCorner()
let layer = self.layer
layer.shadowColor = UIColor.black.cgColor
layer.shadowOffset = CGSize(width: 0, height: 0.2)
layer.shadowOpacity = 0.2
layer.shadowRadius = 5
layer.cornerRadius = 12
【问题讨论】:
layer.maskedCorners 意思是…………? 不清楚。你的代码有什么不满意的地方? 【参考方案1】:Ryan Poolshere 的答案应该适合你。题目类似。
【讨论】:
以上是关于如何在swift中仅使用角半径为3条边添加阴影?的主要内容,如果未能解决你的问题,请参考以下文章
具有角半径和阴影的 SWIFT UITableViewCell