UICollectionView custom flow layout crashes on scrolling
问题 I am creating a custom flowLayout with section headers. here is my flowLayout.swift import UIKit class FlowLayout: UICollectionViewFlowLayout { override func layoutAttributesForElementsInRect(rect: CGRect) -> [UICollectionViewLayoutAttributes]? { // let attributesForElementsInRect = super. var newAttributesForElementsInRect = [UICollectionViewLayoutAttributes]() // unwrap super's attributes guard let attributesForElementsInRect = super.layoutAttributesForElementsInRect(rect) else { return nil