我正在尝试制作一个看起来像火球的动画,当它在寻找信息时,它会绕过Siri麦克风图标。基本上,它是一个绕圆飞行并在其后留下轨迹的物体。
关于如何实现这一目标的任何想法?
这是我到目前为止的内容:
CAKeyframeAnimation *a = [CAKeyframeAnimation animationWithKeyPath:@"position"];
a.duration = 2.0;
a.rotationMode = kCAAnimationRotateAuto;
a.path = [UIBezierPath bezierPathWithOvalInRect:self.frame].CGPath;
[test.layer addAnimation:a forKey:@"moveCircle"];
编辑:径是困难的部分
最佳答案
为什么不在Photoshop中创建它,然后旋转图像?
关于iphone - CAKeyframeAnimation可以像在Siri中一样创建火球,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8159790/