可以从collectionViewController访问位于collections视图单元内的按钮

时间:2018-12-12 01:25:52

标签: ios swift uicollectionview

我有一个UICollectionViewController类和一个UICollectionViewCell类,该类已在我的CollectionView cellForItemAt中出队。我的单元格中有一个按钮,我想访问位于集合控制器中的函数中的该按钮,但是我不想从cellForItemAt内部引用此按钮。我该怎么办?

1 个答案:

答案 0 :(得分:0)

要从UICollectionViewCell访问UIViewController,请使用:

if let cell = myCollectionView.cellForItem(at: IndexPath(item: theCellIndex, section: 0)) as? CustomCollectionViewCell {
// here you could access your cell.button
}