This question already has answers here:
UIView with rounded corners and drop shadow?
(33个答案)
2年前关闭。
今天在这里,我们将问一些棘手的阴影以使用圆角半径进行查看,如果我只想创建带有顶部/底部圆角和阴影的视图怎么办?我该如何在Swift中做到这一点?
任何帮助将不胜感激。
结果:
(33个答案)
2年前关闭。
今天在这里,我们将问一些棘手的阴影以使用圆角半径进行查看,如果我只想创建带有顶部/底部圆角和阴影的视图怎么办?我该如何在Swift中做到这一点?
任何帮助将不胜感激。
最佳答案
您可以这样做,而无需太多代码:
let circleView = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
circleView.backgroundColor = .darkGray
circleView.layer.cornerRadius = 50
circleView.layer.shadowColor = UIColor.green.cgColor
circleView.layer.shadowRadius = 10
circleView.layer.shadowOpacity = 1
结果:
07-25 23:04