gpt4 book ai didi

ios - 向带有圆角的 View 添加阴影

转载 作者:行者123 更新时间:2023-12-04 07:20:34 27 4
gpt4 key购买 nike

这是角落的代码。

self.newView.layer.cornerRadius = 5.0
self.newView.layer.clipsToBound = true
也请帮我处理影子代码

最佳答案

您确实以类似的方式添加了一个阴影层:

newView.layer.cornerRadius = 5
newView.backgroundColor = .blue
newView.clipsToBounds = true

// shadow
newView.layer.shadowColor = UIColor.black.cgColor
newView.layer.shadowOpacity = 0.5
newView.layer.shadowOffset = CGSize(width: 10, height: 10)
newView.layer.shadowRadius = 10
newView.layer.masksToBounds = false
enter image description here

关于ios - 向带有圆角的 View 添加阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68528613/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com