创建翻转动画
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建翻转动画相关的知识,希望对你有一定的参考价值。
[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];
以上是关于创建翻转动画的主要内容,如果未能解决你的问题,请参考以下文章