AVPlayer不在iOS 8中播放视频

时间:2014-11-12 14:28:20

标签: ios8 avplayer

我试图在iOS 8中播放视频,我的代码在iOS 7中运行良好,而不是在ios 8中运行

NSURL *fileURL = [NSURL fileURLWithPath:path];
self.avPlayer = [AVPlayer playerWithURL:fileURL];

AVPlayerLayer *layer = [AVPlayerLayer playerLayerWithPlayer:self.avPlayer];
self.avPlayer.actionAtItemEnd = AVPlayerActionAtItemEndNone;
layer.frame = CGRectMake(0, 0, 1024, 768);
[self.view.layer addSublayer: layer];

[self.avPlayer play];

0 个答案:

没有答案