[objective-c]animateWithDuration
beginAnimationsはiOS4以降非推奨なので、
より便利なanimateWithDurationを使いましょう。
[UIView animateWithDuration:0.3 animations:^{ //アニメーション内容 targetView.frame=CGRectMake(0, 0, 100, 100); } completion:^(BOOL finished){ //アニメーションが終わったとき [targetView removeFromSuperview]; [targetView release]; targetView=nil; } ];