OGeek|极客世界-中国程序员成长平台

标题: ios - MPMoviePlayerController 5s 后停止播放视频 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 06:50
标题: ios - MPMoviePlayerController 5s 后停止播放视频

我尝试在 iOS 中播放视频,但任何视频都只能播放 5 秒。这是我的代码:

NSBundle *bundle = [NSBundle mainBundle];
NSString *moviePath = [bundle pathForResource"videoviewdemo" ofType"mp4"];
NSURL *movieURL = [[NSURL alloc]initFileURLWithPath:moviePath];

MPMoviePlayerController *theMoviPlayer = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
theMoviPlayer.controlStyle = MPMovieControlStyleFullscreen;
theMoviPlayer.controlStyle = MPMovieControlStyleDefault;
[theMoviPlayer setMovieSourceType:MPMovieSourceTypeFile];
theMoviPlayer.shouldAutoplay = YES;

theMoviPlayer.view.transform = CGAffineTransformConcat(theMoviPlayer.view.transform, CGAffineTransformMakeRotation(M_PI_2));

[theMoviPlayer.view setFrame:self.view.frame];
[theMoviPlayer prepareToPlay];
[self.view addSubview:theMoviPlayer.view];



Best Answer-推荐答案


声明一个 ivar @property (nonatomic,strong) MPMoviePlayerController *myMovieController;

将MoviPlayer分配给它,如下所示,

self.myMovieController = theMoviPlayer;
[self.view addSubview: self.myMovieController.view];

然后播放电影。

问题似乎是 theMoviPlayer 没有保留。

关于ios - MPMoviePlayerController 5s 后停止播放视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22219227/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://sqlite.in/) Powered by Discuz! X3.4