アニメーションが終了したら、何らかのアクションを実行したいと考えています。
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.80f];
self.view.transform =
CGAffineTransformMakeTranslation(
self.view.frame.origin.x,
480.0f + (self.view.frame.size.height/2) // move the whole view offscreen
);
[self.view setAlpha:0];
[UIView commitAnimations];
上記のようにアニメーションを実行しました。アニメーションが終了したことを確認する方法は、その後のアクションを実行できるようにします。