我有一个UICollectionViewController类和一个UICollectionViewCell类,该类已在我的CollectionView cellForItemAt
中出队。我的单元格中有一个按钮,我想访问位于集合控制器中的函数中的该按钮,但是我不想从cellForItemAt
内部引用此按钮。我该怎么办?
答案 0 :(得分:0)
要从UICollectionViewCell
访问UIViewController
,请使用:
if let cell = myCollectionView.cellForItem(at: IndexPath(item: theCellIndex, section: 0)) as? CustomCollectionViewCell {
// here you could access your cell.button
}