在collectionview之外访问Collectionview footerviewcell

时间:2019-02-18 06:30:20

标签: swift uicollectionview

如何访问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()
    }

任何帮助将不胜感激。

0 个答案:

没有答案