1

我目前遇到了 MPMoviePlayerViewController 的问题。

- (void)playVideo:(UIButton *)sender {
    MPMoviePlayerViewController *mp = [[MPMoviePlayerViewController alloc] initWithContentURL:self.howToVideoURL];
    [self presentModalViewController:mp animated:YES];
}

从那时起,播放器以模态方式呈现,播放视频,一切都很好。除非我点击“完成”按钮。

不是以通常的方式关闭模式(即通过降低屏幕直到它消失,露出前一个屏幕),看起来前一个屏幕以模态方式呈现在播放器顶部。我没有具体的代码来关闭模式,我依靠原生的“完成”按钮。

有没有人更早经历过这种情况?我该如何解决?

4

1 回答 1

0

你试过presentMoviePlayerViewControllerAnimated吗?

于 2016-09-20T12:27:59.570 回答