如何将阴影和角半径提供给自定义边的相同视图? [重复]

问题描述 投票:1回答:1

这个问题在这里已有答案:

今天在这里我们将要讨论一些棘手的角度半径观看阴影,默认情况下在iOS中不可能制作具有两种规格的视图,即具有圆角和视图阴影的视图。

任何帮助将不胜感激。

ios swift uiview shadow cornerradius
1个回答
0
投票

没有太多代码就可以做到这一点:

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

结果:

circleWithShadow

© www.soinside.com 2019 - 2024. All rights reserved.