このコードを使用して、ビューのレイヤーに無限の回転アニメーションを追加します
CABasicAnimation* rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
rotationAnimation.toValue = [NSNumber numberWithFloat:toValue];
rotationAnimation.duration = 0.7;
rotationAnimation.cumulative = YES;
rotationAnimation.repeatCount = HUGE_VALF;
rotationAnimation.removedOnCompletion = NO;
[animatingView.layer addAnimation:rotationAnimation forKey:@"rotationAnimation"];
場合によっては、animationView を非表示にして、そのレイヤーにアニメーションを保持する必要があります。この場合、アニメーションのレンダリングはどうなりますか? 非表示レイヤーのアニメーションはデバイスのリソースを消費しますか?