私はこれまでのところこれを持っています。画像を30秒ほど回転させて停止させ、反対側を向いてもらいたいです。
編集。コードを変更しました。私はこれを持っていますが、180度回転して止まりません。何度か回転して反対方向に止まるようにしたいです。
CAKeyframeAnimation *animation = [CAKeyframeAnimation animationWithKeyPath:@"transform.rotation.z"];
animation.duration = 0.60;//animation.duration = 0.60;
animation.repeatCount = 1;//animation.repeatCount = 1000ˆ
//#warning remove comment brackets below
animation.keyTimes = [NSArray arrayWithObjects:
[NSNumber numberWithFloat:0.0],
[NSNumber numberWithFloat:1.0], nil];
animation.values = [NSArray arrayWithObjects:
[NSNumber numberWithFloat:0.0],
[NSNumber numberWithFloat:(degrees / 180)*M_PI], nil];
animation.fillMode = kCAFillModeForwards;
画像が 180 度回転したままアニメーションを停止するにはどうすればよいですか。