当我重新启动应用程序时,CABasicAnimation不会为图像设置动画

时间:2013-06-17 10:57:59

标签: iphone ios objective-c quartz-core

我是ios开发的新手。我在我的项目中使用圆形图像。在前景模式中,圆圈图像旋转得很好。现在我点击了主页按钮。之后我重新启动了应用程序,圆圈没有旋转。

这是我的代码:

CABasicAnimation* animation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
animation.fromValue = [NSNumber numberWithFloat: 2*M_PI];
animation.toValue = [NSNumber numberWithFloat:0.0f];
animation.duration = 4.0f;
animation.repeatCount = INFINITY;
[imageLeft.layer addAnimation:animation forKey:@"SpinAnimation"];

我想在浏览应用程序时旋转圆圈图像。

0 个答案:

没有答案