I am trying to animate a UIView here. It looks like a rectangle, and I just want to translate it to my coordinations.
UIView
So, how can I animate it? I tried
In iOS 4, the UIView block animation method is easiest:
[UIView animateWithDuration:1.0 animations:^{ myView.frame = myNewFrameRect; }];
http://developer.apple.com/library/ios/documentation/uikit/reference/UIView_Class/UIView/UIView.html#//apple_ref/occ/clm/UIView/animateWithDuration:animations: