cv.reloadData()
DispatchQueue.main.async {
let indexPath = IndexPath(item: self.index, section: 0)
self.cv.scrollToItem(at: indexPath, at: .top, animated: true)
let cell = self.cv.cellForItem(at: indexPath) as? CustomCell
cell?.indicate()
}
在let cell = self.cv.cellForItem(at: indexPath) as? CustomCell
行的某个时间点加载 - 有时是零。
如何确保每次cell
都有实际的细胞项目?
感谢