Как добавить цель кнопки из UICollectionViewCell в UICollectionViewController - PullRequest
0 голосов
/ 06 июля 2019

Я пытаюсь добавить цель к кнопке, которая находится внутри UICollectionViewCell.Но я хочу добавить цель в UICollectionViewController.Я установил кнопку на ленивую переменную, но она все равно не работает.

    override func viewDidLoad() {
        super.viewDidLoad()

        collectionView.backgroundColor = #colorLiteral(red: 1.0, green: 1.0, blue: 1.0, alpha: 1.0)
        collectionView.register(ProfileHeader.self, forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: headerId)
        collectionView.register(ProfileCell.self, forCellWithReuseIdentifier: cellId)


        let profileHeader = ProfileHeader()
        profileHeader.addOfferButton.addTarget(self, action: #selector(handleAddOffer), for: .touchUpInside)
    }

    @objc func handleAddOffer() {
        print(123)
    }
...