Revision: 40869
Updated Code
at February 23, 2011 16:10 by arpit
Updated Code
[UIView beginAnimations:@"fadeIn" context:nil]; [UIView setAnimationDuration:1]; [UIView setAnimationDelegate:self]; [UIView setAnimationDidStopSelector:@selector(onFlipComplete)]; [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:videoPlayer cache:YES]; videoPlayer.alpha = 1; [UIView commitAnimations];
Revision: 40868
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at February 9, 2011 02:56 by arpit
Initial Code
[UIView beginAnimations:@"fadeIn" context:nil]; [UIView setAnimationDuration:1]; [UIView setAnimationDelegate:self]; [UIView setAnimationDidStopSelector:@selector(onFlipComplete)]; [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:videoPlayer cache:YES]; videoPlayer.alpha = 1; [UIView commitAnimations];
Initial URL
Initial Description
Initial Title
Create a Flip Animation
Initial Tags
animation
Initial Language
Objective C