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
[UIView beginAnimations:@"your text" context:nil]; [UIView setAnimationDuration:0.4]; //Your animation duration [UIView setAnimationDelegate:self]; // write your code here , what you want to animate // [UIView commitAnimations];
Working Fine definitely.