美文网首页iOS bug修复iOS 视频图像相关iOS UI
MPMovieplayerviewcontroller播放结束后

MPMovieplayerviewcontroller播放结束后

作者: superYang0033 | 来源:发表于2016-01-11 18:26 被阅读1097次

    原文地址:http://yangchao0033.github.io/blog/2016/01/01/mpmovieplayerviewcontrollerbo-fang-jie-shu-hou-zi-dong-xiao-shi-de-jie-jue-fang-an/


    你可以使用这段代码来阻止控制器播放在播放结束后自动dismissing(消失),并且捕捉到用户点击完成的按钮事件去自己定义并处理让你的MPMoviePlayerViewController播放器的消失(dismiss)的时机


    步骤 1. - 创建并初始化一个MPMoviePlayerViewController(videoPlayer)

    MPMoviePlayerViewController *videoPlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:[[NSURL alloc ]initWithString:[aURL];
    

    步骤 2. - 移除videoPlayer默认的通知事件并且加入自己的通知事件。

    [[NSNotificationCenter defaultCenter] removeObserver:videoPlayer
    name:MPMoviePlayerPlaybackDidFinishNotification object:videoPlayer.moviePlayer];
    [[NSNotificationCenter defaultCenter] addObserver:self
    selector:@selector(videoFinished:) name:MPMoviePlayerPlaybackDidFinishNotification object:videoPlayer.moviePlayer];
    

    步骤 3. - 手动显示你的videoPlayer控制器

    [self presentMoviePlayerViewControllerAnimated:videoPlayer];
    

    步骤 4. - 添加 videoFinish: 方法处理通知事件

    -(void)videoFinished:(NSNotification*)aNotification{
        int value = [[aNotification.userInfo valueForKey:MPMoviePlayerPlaybackDidFinishReasonUserInfoKey] intValue];
        if (value == MPMovieFinishReasonUserExited) {
            [self dismissMoviePlayerViewControllerAnimated];
        }
    }
    

    参考:http://stackoverflow.com/a/19596598

    相关文章

      网友评论

      本文标题:MPMovieplayerviewcontroller播放结束后

      本文链接:https://www.haomeiwen.com/subject/eqoqkttx.html