我对此感到困惑。我有一个包含 .m3u8 文件的 URL,当我尝试使用以下命令流式传输 URL 时:
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
[player setControlStyle:MPMovieControlModeVolumeOnly];
[player setFullscreen:YES];
[player prepareToPlay];
[player play];
似乎我不能,因为什么都没有开始播放。但是当我使用:
MPMoviePlayerViewController* controller = [[MPMoviePlayerViewController alloc] initWithContentURL:movieURL];
[self presentViewController:controller animated:YES completion:nil];
viewcontroller
开始播放文件。有什么不同?为什么我不能在我viewcontroller
的 提前致谢。