-(void)initAndPlayMovie:(NSURL *)movieURL
{
// Initialize a movie player object with the specified URL
MPMoviePlayerController *mp = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
if (mp)
{
self.moviePlayer = mp;
[mp release];
[self.moviePlayer play];
}
}
在这里,在上面的代码中,我们只能传递一个电影 URL。是不是可以将多个网址传递给它?
因此,电影播放器将在播放第一个 URL 后加载第二个 URL。
是否可以?我们怎么能做到这一点?
现在,当我尝试传递其他网址时,在完成第一个网址后。
- (void) moviePlayBackDidFinish:(NSNotification*)notification
{
[self initAndPlayMovie:secondURL];
}
设备在加载时首先更改其方向,在加载设备后再次返回横向模式。
如何解决这个问题?