gpt4 book ai didi

ios - 如何在 iOS 中获得完美的旋转 UIView 的 X,Y 位置

转载 作者:技术小花猫 更新时间:2023-10-29 11:07:26 24 4
gpt4 key购买 nike

我正在使用 CABasicanimation 来旋转 UIView。我正在使用这段代码:

    CABasicAnimation *rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
NSNumber *currentAngle = [CircleView.layer.presentationLayer valueForKeyPath:@"transform.rotation"];
rotationAnimation.fromValue = currentAngle;
rotationAnimation.toValue = @(50*M_PI);
rotationAnimation.duration = 50.0f; // this might be too fast
rotationAnimation.repeatCount = HUGE_VALF; // HUGE_VALF is defined in math.h so import it
[CircleView.layer addAnimation:rotationAnimation forKey:@"rotationAnimationleft"];

在此,我想要在“UIView”旋转时完美的 X、Y 位置。我怎样才能做到这一点?

enter image description here

最佳答案

我得到了这个问题的答案,请转到此链接寻找答案

Go to This Link For Answer

关于ios - 如何在 iOS 中获得完美的旋转 UIView 的 X,Y 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34763819/

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