my project
我连续几张桌子上有几个视频.
问题是它们是同步播放的.
在屏幕上1vIDeo和2vIDeo同步播放
如何在表格视图和cell.player上跟踪焦点单元格?.play().和其他细胞cell.player?.pause()
我的代码:
class MyVIEwController//don't workfunc tableVIEw(_ tableVIEw: UItableVIEw,dIDEnddisplaying cell: UItableVIEwCell,forRowAt indexPath: IndexPath) { if let cell = tableVIEw.cellForRow(at: indexPath) as? ListVIEwCell { cell.player?.pause() }}//don't callfunc tableVIEw(_ tableVIEw: UItableVIEw,dIDUpdateFocusIn context: UItableVIEwFocusUpdateContext,with coordinator: UIFocusAnimationCoordinator) { print("table vIEw cell dIDUpdateFocusIn")}class MytablevIEwCelloverrIDe func prepareForReuse() { super.prepareForReuse() player?.pause() }解决方法 我正在对您的项目进行一些更改.检查一下
https://yadi.sk/d/bQ-eIyMz3VF28V
决定滚动时要播放或暂停的视频:
func handleScroll() { if let indexPathsForVisibleRows = mytableVIEw.indexPathsForVisibleRows,indexPathsForVisibleRows.count > 0 { var focusCell: ListVIEwCell? for indexPath in indexPathsForVisibleRows { if let cell = mytableVIEw.cellForRow(at: indexPath) as? ListVIEwCell { if focusCell == nil { let rect = mytableVIEw.rectForRow(at: indexPath) if mytableVIEw.bounds.contains(rect) { cell.player?.play() focusCell = cell } else { cell.player?.pause() } } else { cell.player?.pause() } } } }}
希望这会帮助你.
总结以上是内存溢出为你收集整理的ios – 检查表如何查看单元格焦点和播放器设置暂停全部内容,希望文章能够帮你解决ios – 检查表如何查看单元格焦点和播放器设置暂停所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)