У меня есть 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)
}