1234567891011121314151617181920212223 |
- //
- // PBHorizontalFlowLayout.h
- // PBSDK
- //
- // Created by LStar on 2025/2/14.
- //
- #import <UIKit/UIKit.h>
- 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
|