gpt4 book ai didi

ios - 阴影未显示在 UIView 上

转载 作者:搜寻专家 更新时间:2023-10-31 08:09:47 25 4
gpt4 key购买 nike

我有一个 ViewController,在那个 Controller 中有两个 UIView。

我想在第二个 UIView 上显示的第一个 UIView 阴影的底部添加。

first UIView

-------------
<- shadow here
secondUIView

但是当我简单地添加这段代码时它不起作用。

 firstView.layer.masksToBounds = true
firstView.layer.shadowOffset = CGSizeMake(0,5)
firstView.layer.shadowOpacity = 0.5
firstView.layer.shadowPath = UIBezierPath(rect: firstView.bounds).CGPath

最佳答案

如果将 maskToBounds 设置为 false,它应该会显示阴影。

firstView.layer.masksToBounds = false

如果 masksToBounds 属性为 true,则 View 边界之外的任何内容都将被裁剪到这些边界。

关于ios - 阴影未显示在 UIView 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34965022/

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