gpt4 book ai didi

ios - 如何给透明的 UIView 添加阴影?

转载 作者:可可西里 更新时间:2023-11-01 03:39:28 30 4
gpt4 key购买 nike

如何重现此阴影?我的问题是,如果我使用高 alpha 颜色或 clearColor,则没有投影,如果我使用低 alpha 颜色,则看不到板下的投影。由于体积的层次在变化(彩色部分),阴影也在移动,所以它不是纯粹的 Photoshop。

enter image description here

最佳答案

尝试使用您 View 的这些属性。它可能会以某种方式结束

    view.layer.shadowColor = [UIColor colorWithWhite:.5 alpha:1].CGColor;
view.layer.shadowRadius = 4.0f;
view.layer.shadowPath = CGPathCreateWithRect(CGRectMake(0, 0, 50, 50), NULL);
view.layer.shadowOpacity = 1.0f;
view.layer.shadowOffset = CGSizeMake(1, 1);

顺便说一句,CGPathRelease(rect) 应该在最后抱歉。

关于ios - 如何给透明的 UIView 添加阴影?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10861163/

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