如何为ImageView添加阴影?

时间:2019-10-25 13:20:33

标签: ios swift

问题-如何向看起来像附件的ImageView添加阴影?

enter image description here

到目前为止我所做的

        imageView.layer.shadowColor = UIColor.gray.cgColor
        imageView.layer.shadowOpacity = 0.3
        imageView.layer.shadowOffset = CGSize.zero
        imageView.layer.shadowRadius = 5


        imageView.layer.shadowOffset = CGSize(width: 3, height: 3)
        imageView.layer.masksToBounds = false

看起来不像附件。有人可以帮忙吗?

0 个答案:

没有答案