// // PBHorizontalFlowLayout.h // PBSDK // // Created by LStar on 2025/2/14. // #import NS_ASSUME_NONNULL_BEGIN @interface PBHorizontalFlowLayout : UICollectionViewFlowLayout - (instancetype)initWithColumn:(NSInteger)column row:(NSInteger)row; @property (nonatomic) NSUInteger itemCountPerRow; // 一页显示多少行 @property (nonatomic) NSUInteger rowCount; @property (strong, nonatomic) NSMutableArray *allAttributes; @end NS_ASSUME_NONNULL_END