移到收藏夹视图的下一个单元格时如何停止AV Player

时间:2019-03-11 12:18:05

标签: avplayer

我想在滑动单元格时自动暂停avplayer,我执行avplayer.pause()来在单元格不可见时暂停视频,并且当移动到单元格时,视频会自动播放,就像在didenddisplayingcell中一样

func collectionView(_ collectionView:UICollectionView,didEndDisplaying单元格:UICollectionViewCell,forItemAt indexPath:IndexPath)  {

    self.avPlayer.pause()
    self.celluse.isHidden = true
    self.avPlayer.isMuted = true
    self.avplayerlayer.removeFromSuperlayer()
    self.avPlayerController.dismiss(animated: true, completion: nil)



   }

我做了很多事情,但是当移动collectionview单元格时视频并没有暂停

0 个答案:

没有答案