vote up 0 vote down star

Hi,

I need to animate and imageview, first rotate it in one direction, shift the center and rotate it in the opposite direction in a single animation loop.

What i did was ::

[UIImageView beginAnimations:nil context:NULL]; [UIImageView setAnimationDuration:2.0]; [UIImageView setAnimationDelegate:self]; [UIImageView setAnimationWillStartSelector:@selector(setRightAngle)];

image.center = CGPointMake(newCenter.x, newCenter.y) ;

[UIImageView setAnimationDidStopSelector:@selector(setStraight)]; [UIImageView commitAnimations];

This is getting the job done, but it happens in 3 steps that is noticeable on the screen. it first turns right,then shifts the center and the set the image to the default angle. i want to remove that noticeable breaks in between to achieve a smooth animation. Can some one suggest me a better approach to this issue?

Thanks & Regards, NR

flag

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.