UICollectionViewLayout и метод layoutAttributesForItem никогда не вызываются

Я пытаюсь реализовать UICollectionViewFlowLayout или же UICollectionViewLayout - любыми способами layoutAttributesForItem никогда не называется.

Я вижу от других, что они называют layoutAttributesForItem от self.layoutAttributesForItem,

Как этот пример потока:

Я создал проект Playground, на который вы можете посмотреть. В общем, я просто пытаюсь увеличить вид по центру.

2 ответа

Попробуйте использовать его подклассами UICollectionViewFlowLayout

let flowLayout = LeftAgignedFlowLayout()
flowLayout.minimumLineSpacing = 18
flowLayout.minimumInteritemSpacing = 8
flowLayout.scrollDirection = .vertical
self.collectionViewLayout = flowLayout



class LeftAgignedFlowLayout : UICollectionViewFlowLayout {        

    override func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? {
        let arr = super.layoutAttributesForElements(in: rect)!
        return arr.map {
            atts in 

            var atts = atts
            if atts.representedElementCategory == .cell {
                let ip = atts.indexPath
                atts = self.layoutAttributesForItem(at:ip)!
            }
            return atts
        }
    }

    override func layoutAttributesForItem(at indexPath: IndexPath) -> UICollectionViewLayoutAttributes? {
        var atts = super.layoutAttributesForItem(at:indexPath)!
        if indexPath.item == 0 {
            return atts 

        }
        if atts.frame.origin.x - 1 <= self.sectionInset.left {
            return atts 

        }
        let ipPv = IndexPath(item:indexPath.row-1, section:indexPath.section)
        let fPv = self.layoutAttributesForItem(at:ipPv)!.frame
        let rightPv = fPv.origin.x + fPv.size.width + self.minimumInteritemSpacing
        atts = atts.copy() as! UICollectionViewLayoutAttributes
        atts.frame.origin.x = rightPv
        return atts
    }

}

Итак, я столкнулся с той же проблемой, и я начал изучать этот проект с помощью Apple, я думаю, что это ошибка, прокрутка к первому элементу в представлении коллекции в viewWillAppear решила проблему.

      override func viewWillAppear(_ animated: Bool) {
    super.viewWillAppear(animated)
    if collectionView.numberOfItems(inSection: 0) > 0 {
        collectionView.scrollToItem(at: IndexPath(item: 0, section: 0), at: .top, animated: false)
    }
}
Другие вопросы по тегам