CALayer的动画结束回调?

zho*_*shu 5 cocoa-touch core-animation

使用iPhone CALayer,我想要一个旋转动画用于我的精神图层,但我也想要动画结束回调,热那么做?

我想也许我应该使用CABasicAnimation,但我不知道如何使用CABasicAnimation进行旋转,任何想法?

谢谢

Ken*_*ner 5

如果为CAAnimation设置委托,则可以添加回调方法:

- (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag
Run Code Online (Sandbox Code Playgroud)

在动画完成时调用它.根据此链接查找通过CGAffineTransform转换矩阵旋转动画的示例:

http://iphonedevelopment.blogspot.com/2008/10/demystifying-cgaffinetransform.html