gpt4 book ai didi

mpmovieplayercontroller - MPMoviePlayerController 的 IOS 6 问题

转载 作者:行者123 更新时间:2023-12-01 02:31:50 26 4
gpt4 key购买 nike

请检查以下代码:

(void) moviePlayerDidExitFullscreen:(NSNotification*)notification 
{

MPMoviePlayerController *player = [notification object];

[[NSNotificationCenter defaultCenter] removeObserver:self

name:MPMoviePlayerDidExitFullscreenNotification
object:player];

[player setControlStyle:MPMovieControlStyleNone];

if (isPlaying)
{
[self stopCurrentMoviePlayer];
}
}

问题是这在 IOS 5 中完美运行,但在 IOS 6 更新 iPad3 中不起作用。

视频播放完毕后,电影播放器​​没有关闭,我每次都需要单击完成按钮来关闭电影播放器​​。

任何人都可以为这个问题提供解决方案吗?

最佳答案

单击 done 将调用 moviePlayerDidExitFullscreen

但是,如果您让电影正常完成,则调用 moviePlaybackDidFinish 但由于 IOS 6,它不会让您退出全屏模式。所以修复是添加 player.fullscreen = FALSE;在打电话之前
[player.view removeFromSuperview];

关于mpmovieplayercontroller - MPMoviePlayerController 的 IOS 6 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12725941/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com