我想在滑动单元格时自动暂停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单元格时视频并没有暂停