/// 返回指定范围内的所有元素的布局属性 - (nullable NSArray<__kindof UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect { if (_itemCount <= 0) { return nil; } .... }