我有一个观点,AVPlayer
当播放器
从第一个视频移动到第二个视频时,我需要一个溶解动画。
问问题
364 次
1 回答
0
我不知道您的 UIView 结构,但您可以加载新的 UIView / AVVideo 并使用 UIView 动画将当前视图转换为第二个视图。
// load new UIView
// make it invisible
[UIView animateWithDuration:1
delay:1.5
options:UIViewAnimationCurveEaseOut
animations:^{
// fade in, or change x/y to slide in
}
completion:^(BOOL finished){
NSLog(@"Done!");
}];
于 2013-07-23T07:14:55.507 回答