Stacked Animation Sample
https://github.com/volonbolon/Stacked-Animations
- (void)startAnimation
{
[UIView beginAnimations:@"Stacked Animations" context:nil];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:2];
self.imageView.center = CGPointMake(160, 230);
self.imageView.center = CGPointMake(160, 376);
[UIView commitAnimations];
}
댓글 쓰기