Доступ к Collectionview footerviewcell вне коллекции viewview - PullRequest
0 голосов
/ 18 февраля 2019

Как получить доступ к 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()
    }

Любая помощь будет оценена,

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...