定点の周りを前後に (1 回) ぶら下げたい画像があります。だから私は次のコードを持っています:
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.5];
myDial.transform = CGAffineTransformMakeRotation(degreesToRadians(45)); //lineA
[UIView commitAnimations];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.5];
myDial.transform = CGAffineTransformMakeRotation(degreesToRadians(0 )); //lineB
[UIView commitAnimations];
上記のコードを実行すると、 lineA がすぐに (1.5 秒ではなく) 実行されます。その直後、lineB が 1.5 秒で実行されます。両方のアニメーションにそれぞれ 1.5 秒かかるようにします。これどうやってするの