gpt4 book ai didi

ios - CAKeyframeAnimation 旋转不绘制真实阴影

转载 作者:行者123 更新时间:2023-11-28 08:19:46 26 4
gpt4 key购买 nike

我想用 CAKeyframeAnimation 旋转一个 UIImageView。问题是阴影随物体旋转,产生非真实效果... The shadow must remain under the image, not rotating around it

这是我的代码。很简单:

    let imagen:UIImageView = UIImageView(image:UIImage(named: "material6.png"))

self.view.addSubview(imagen)

imagen.center = CGPoint(x: 100, y: 100)

imagen.layer.shadowOpacity = 0.75
imagen.layer.shadowOffset = CGSize(width: 0, height: 15)

//Animación del ángulo
let animacionAngulo = CAKeyframeAnimation(keyPath: "transform.rotation.z")

var valoresAngulo = [NSNumber]()
let degrees:Float = 360
let radians = degrees * Float.pi / Float(180.0)

valoresAngulo.append(NSNumber(value: 0))
valoresAngulo.append(NSNumber(value: radians))

animacionAngulo.values = valoresAngulo

//Permite añadir varias animaciones y gestionarlas a la vez
animacionAngulo.repeatCount = Float.infinity
animacionAngulo.duration = 2.0

imagen.layer.add(animacionAngulo, forKey: nil)

有什么解决办法吗?

最佳答案

如果影子随着图像旋转。您可以通过在 UIImageView 下方添加一个与您的 UIImageView 具有相同尺寸的 UIView 来解决它。如果您将阴影添加到您的 UIView 而不是 UIImageView,您可以在这种情况下达到预期的效果。

let imagen:UIImageView = UIImageView(frame: CGRect(x: 100, y: 100, width: 100, height: 100))
imagen.center = CGPoint(x: 100, y: 100)
imagen.backgroundColor = UIColor.red

let belowView: UIView = UIView(frame: imagen.frame)
belowView.backgroundColor = UIColor.white
belowView.layer.shadowOpacity = 0.75
belowView.layer.shadowOffset = CGSize(width: 0, height: 15)
self.view.addSubview(belowView)

self.view.addSubview(imagen)

//Animación del ángulo
let animacionAngulo = CAKeyframeAnimation(keyPath: "transform.rotation.z")

var valoresAngulo = [NSNumber]()
let degrees:Float = 360
let radians = degrees * Float.pi / Float(180.0)

valoresAngulo.append(NSNumber(value: 0))
valoresAngulo.append(NSNumber(value: radians))

animacionAngulo.values = valoresAngulo

//Permite añadir varias animaciones y gestionarlas a la vez
animacionAngulo.repeatCount = Float.infinity
animacionAngulo.duration = 2.0

imagen.layer.add(animacionAngulo, forKey: nil)

关于ios - CAKeyframeAnimation 旋转不绘制真实阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41633770/

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