Отображение размера заголовка collectionView на основе динамического содержимого представления коллекции внутри этого заголовка не работает - PullRequest
0 голосов
/ 08 октября 2018

У меня есть collectionView (1), в котором я настраиваю заголовок.Этот заголовок имеет внутри другого collectionView (2).Теперь я пытаюсь установить headerSize в referenceSizeForHeaderInSection в зависимости от размера collectionView (2) в заголовке.Я в основном застрял, не знаю, куда идти отсюда, я все перепробовал.Я смог получить высоту заголовка с помощью:

collectionView.collectionViewLayout.collectionViewContentSize.height

, но только в collectionView (2), настраивая публичную переменную.Попытка получить общедоступную переменную не будет работать в collectionView (1) referenceSizeForHeaderInSection (только если я использую DispatchQueue, которое не может получить возвращаемое значение для заголовка).Вероятно, я делаю что-то не так.Нужна помощь, другое направление, все, что ценится.

func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {

    let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "VideoHeader", for: indexPath)
    header.removeFromSuperview()
    header.backgroundColor = UIColor.white

    headerAdvertCollection.collectionView.translatesAutoresizingMaskIntoConstraints = false
    header.addSubview(headerAdvertCollection.collectionView)
    headerAdvertCollection.collectionView.centerXAnchor.constraint(equalTo: header.centerXAnchor).isActive = true
    headerAdvertCollection.collectionView.centerYAnchor.constraint(equalTo: header.centerYAnchor).isActive = true
    headerAdvertCollection.collectionView.heightAnchor.constraint(equalTo: header.heightAnchor).isActive = true

    headerAdvertCollection.collectionView.widthAnchor.constraint(equalTo: header.widthAnchor, constant: -10).isActive = true

    headerAdvertCollection.setupCollectionView()

    return header
}

//MARK: Collection View Header Height
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {

    let advertisingView : CGFloat = 450
    let height : CGFloat = advertisingView

    return CGSize(width: collectionView.frame.width - 10, height: height)
}

1 Ответ

0 голосов
/ 08 октября 2018

Предположим, у вас есть collectionView1 и collectionView2, вы можете получить доступ к одному из них в методах делегата / источника данных, просто выполнив проверку if.

Например, в referenceSizeForHeaderInSection:

  func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {

   if collectionView == collectionView1{
     let advertisingView : CGFloat = 450
     let height : CGFloat = advertisingView

     //supposing you want to use collectionView2
     return CGSize(width: collectionView2.frame.width - 10, height: height)
   }else{
     // HERE YOU CAN RETURN A VALUE FOR collectionView2
   }

}

ПРИМЕЧАНИЕ: для использования collectionView1 и collectionView2 необходимо связать выходы

...