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

前端之家收集整理的这篇文章主要介绍了如何在ios中获得旋转UIView的完美X,Y位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用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"];

在这里我想要完美的X,Y位置,而“UIView”正在旋转.
如果有人知道请帮助我.

提前谢谢你

解决方法

我得到了这个问题的答案请转到此链接以获得答案

Go to This Link For Answer

原文链接:https://www.f2er.com/iOS/334160.html

猜你在找的iOS相关文章