我是 iphone 开发新手。我创建了一个能够从 url 播放视频的应用程序。是否可以设置任何动画来打开 iphone 中的视频播放器?视频在横向视图中正常打开。我想用一些动画来显示视频播放器的打开。有什么办法吗?
NSURL *movieURL = [NSURL URLWithString:@"http://url of movie"];
if (movieURL)
{
if ([movieURL scheme])
{
MovietryAppDelegate *appDelegate = (MovietryAppDelegate *)[[UIApplication sharedApplication] delegate];
[appDelegate initAndPlayMovie:movieURL];
}
}
在委托类中,我定义了 initAndPlayMovie 方法。我使用 Apple 示例“电影播放器”作为参考。谢谢。