Как получить доступ к footerview
кнопкам вне collectionview
?
Кто-нибудь знает, как получить доступ к этой кнопке снаружи collectionView
func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView
{
switch kind {
case UICollectionElementKindSectionHeader:
let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "cellHeader", for: indexPath) as! CollectionReusableView
return header
case UICollectionElementKindSectionFooter:
let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "cellFooter", for: indexPath) as! CollectionReusableView
return footer
default:
print("anything")
}
return UICollectionReusableView()
}
Любая помощь будет оценена,