/ Published in: Objective C
Expand |
Embed | Plain Text
[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];
You need to login to post a comment.
