gpt4 book ai didi

iphone - UIView 阴影不工作

转载 作者:IT王子 更新时间:2023-10-29 08:02:22 27 4
gpt4 key购买 nike

这是我的代码。

listView.layer.masksToBounds = NO;
listView.layer.shadowOffset = CGSizeMake(-3, 3);
listView.layer.shadowColor=[[UIColor blackColor] CGColor];
listView.layer.shadowRadius = 4;
listView.layer.shadowOpacity = 1.0;
[listView.layer setShouldRasterize:YES];

它与阴影效果配合得很好。

改变时

listView.layer.masksToBounds = YES;

我没有得到阴影效果。

最佳答案

阴影实际上绘制在 UIView 下方。如果将 maskToBounds 设置为 YES,这将剪切 UIView 框架之外的任何绘图。 Here is a SO link that describes this in more detail.

关于iphone - UIView 阴影不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10384207/

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