我有一个带有3个全屏单元格的UICollectionView,想要知道什么时候单元格在刷卡时全屏聚焦。 cellForItemAtIndexPath.isFocused方法对我不起作用。这是正确使用isFocused方法还是我应该采用另一种方式?
答案 0 :(得分:0)
无论如何,我可以从你的问题中得到答案。我想你想知道它在哪个页面上。所以,我是这样做的:
func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
for cell in colViewSol.visibleCells {
let indexPath = colViewSol.indexPath(for: cell)
// here add the code whatever you want to do
}
}