UICollectionView - 如何等待'加载细胞?

时间:2017-11-15 22:36:10

标签: ios swift3 uicollectionview swift4

    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都有实际的细胞项目? 感谢

0 个答案:

没有答案