屏幕加载时AVPLayer显示黑屏

时间:2016-03-11 09:24:05

标签: ios uitableview video avplayer avplayerlayer

我正在使用AVPLayer在UITableView中播放视频。视频播放正常但有时最初播放视频时,声音即将播出但屏幕为黑色。播放5-6秒后视频可见。我使用以下代码:

 AVURLAsset *asset = [AVURLAsset URLAssetWithURL:url options:nil];
playerItem = [AVPlayerItem playerItemWithAsset:asset];
AVPlayer *avPlayer = [AVPlayer playerWithPlayerItem:playerItem];
self.avPlayer = avPlayer;

__weak CLBAVPlayer *weakSelf = self;
[self.avPlayer addPeriodicTimeObserverForInterval:CMTimeMakeWithSeconds(1.0 / 60.0, NSEC_PER_SEC)
                                            queue:nil
                                       usingBlock:^(CMTime time) {
                                           [weakSelf progress];
                                       }];

self.layer = [AVPlayerLayer playerLayerWithPlayer:self.avPlayer];
self.avPlayer.actionAtItemEnd = AVPlayerActionAtItemEndNone;

请帮我弄清楚问题。

1 个答案:

答案 0 :(得分:1)

我得到了答案。实际上问题是,当我获取图层并将其添加为子图层时,它不在主队列中。在主队列中使用dispatch_async解决了我的问题。