私はios開発の初心者です。プロジェクトでホイール イメージを使用しています。アニメーションはフォアグラウンド モードで正常に動作しています。その後、ホームボタンを押しました。アプリを再起動すると、ホイールアニメーションが機能しません。これは私のコードです:
CABasicAnimation* animation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"]; animation.fromValue = [NSNumber numberWithFloat:0.0f];
animation.toValue = [NSNumber numberWithFloat: 2*M_PI];
animation.duration = 1.0f;
animation.repeatCount = INFINITY;
[imageLeft.layer addAnimation:animation forKey:@"SpinAnimation"];