我是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"];
我想在浏览应用程序时旋转圆圈图像。