gpt4 book ai didi

ios - CALayer shadowColor 不变

转载 作者:行者123 更新时间:2023-11-29 12:19:52 27 4
gpt4 key购买 nike

所以我第一次正确设置了 UIView 图层的阴影(它显示得非常好)但是当我尝试更改颜色时(没有别的,只是 layer.shadowColor)它不会在 View 中更新。它仍然显示原始颜色。我已经尝试过 layer setNeedsDisplay 但没有任何运气。

self.profileIconShadow.layer.cornerRadius = self.profileIcon.frame.size.height / 2;
self.profileIconShadow.layer.shadowColor = [UIColor blackColor].CGColor;
self.profileIconShadow.layer.shadowOpacity = 1.0f;
self.profileIconShadow.layer.shadowRadius = self.profileIcon.frame.size.width * .025;
self.profileIconShadow.layer.shadowOffset = CGSizeZero;

// if ([entry[@"isInactive"] boolValue]) { // Original
if (true) { // Overrode temporarily to test it out
self.profileIconShadow.layer.shadowColor = [UIColor redColor].CGColor;
[self.profileIconShadow.layer setNeedsDisplay];
}

第一次根据需要正确设置阴影。但后来我尝试更改颜色,它仍然保持黑色而不是变成红色。

它应该是这样的。

编辑 #2:我注意到,如果我在第一次制作阴影时注释掉黑色,稍后它会变成红色。我不能多次更改 shadowColor 吗?

最佳答案

我昨晚试了你的代码,我什至在我 sleep 前用你的代码制作了一个开关动画..哈哈..

问题:我不能多次更改 shadowColor 吗?,当然可以.. ;)

你的层没有更新的唯一潜在原因可能是它没有在主线程中执行,以确保尝试这个:

if ([entry[@"isInactive"] boolValue]) 
{ // Original
dispatch_async(dispatch_get_main_queue(), ^{

self.profileIconShadow.layer.shadowColor = [UIColor redColor].CGColor;

[self.profileIconShadow.layer setNeedsDisplay];

}
}

关于ios - CALayer shadowColor 不变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30956928/

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