/ Published in: Objective C
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
[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];