热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

不推荐使用'MPMoviePlayerController':首先在iOS9.0中弃用

如何解决《不推荐使用'MPMoviePlayerController':首先在iOS9.0中弃用》经验,为你挑选了1个好方法。

已经有人在swift中回答这个问题
MPMoviePlayerController'在swift中被弃用了我想在Objective-C中使用它.

我收到了这个警告

不推荐使用'MPMoviePlayerController':首先在iOS 9.0中弃用

这是我的代码:

MPMoviePlayerController* _moviePlayer;
_moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:contentURL];
_moviePlayer.shouldAutoplay = YES;
[self.view addSubview:_moviePlayer.view];
[_moviePlayer setFullscreen:YES animated:YES];

Mihir Oza.. 7

在@Larme的帮助下,我解决了我的问题.
1)我添加了两个框架

#import 
#import   

2)我用我的代码替换

AVPlayerViewController * _moviePlayer1 = [[AVPlayerViewController alloc] init];
    _moviePlayer1.player = [AVPlayer playerWithURL:_img.contentURL];

    [self presentViewController:_moviePlayer1 animated:YES completion:^{
        [_moviePlayer1.player play];
    }];  

我希望它能帮助谁面对这个问题.



1> Mihir Oza..:

在@Larme的帮助下,我解决了我的问题.
1)我添加了两个框架

#import 
#import   

2)我用我的代码替换

AVPlayerViewController * _moviePlayer1 = [[AVPlayerViewController alloc] init];
    _moviePlayer1.player = [AVPlayer playerWithURL:_img.contentURL];

    [self presentViewController:_moviePlayer1 animated:YES completion:^{
        [_moviePlayer1.player play];
    }];  

我希望它能帮助谁面对这个问题.


推荐阅读
author-avatar
QK丫头419QJ
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有