gpt4 book ai didi

ios - 以圆周运动绕一点移动物体

转载 作者:行者123 更新时间:2023-11-29 13:23:53 25 4
gpt4 key购买 nike

我在 View 中有一些对象,我想在屏幕上围绕它们自己的点移动。我希望它们看起来几乎是静止的,但有轻微的圆周运动(不是旋转,项目将保持笔直和水平),有点像浮标在海洋中上下摆动,同时也有一些水平运动。

我的基本思路是围绕物体移动 anchor 。我只想要一个微妙的效果,对象不会在整个屏幕上移动。最多10-20分。它们将是仍然能够被按下的 UIButton。到目前为止,我搜索的所有结果都是关于一个点的旋转,而不是我想要的结果。

最佳答案

您可以使用CAKeyframeAnimation 使您的对象跟随一个小圆圈或适合您需要的任何其他路径。以下是创建和使用 CAKeyframeAnimation 对象的方法。

CAKeyframeAnimation *pathAnimation = [CAKeyframeAnimation animationWithKeyPath:@"position"];
pathAnimation.calculationMode = kCAAnimationPaced;
pathAnimation.fillMode = kCAFillModeForwards;
pathAnimation.removedOnCompletion = NO;
CGMutablePathRef * circle = CGPathCreateWithEllipseInRect(CGRectMake(/* the center of your object and the radius of your circle*/));
pathAnimation.path = circle;
CGPathRelease(circle);
[buttonView.layer addAnimation:pathAnimation forKey:@"animatePath"];

这应该可以帮助您入门。请注意,您需要导入 QuartzCore 框架才能使其正常工作。

关于ios - 以圆周运动绕一点移动物体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13667632/

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