PBHorizontalFlowLayout.h 476 B

1234567891011121314151617181920212223
  1. //
  2. // PBHorizontalFlowLayout.h
  3. // PBSDK
  4. //
  5. // Created by LStar on 2025/2/14.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface PBHorizontalFlowLayout : UICollectionViewFlowLayout
  10. - (instancetype)initWithColumn:(NSInteger)column row:(NSInteger)row;
  11. @property (nonatomic) NSUInteger itemCountPerRow;
  12. // 一页显示多少行
  13. @property (nonatomic) NSUInteger rowCount;
  14. @property (strong, nonatomic) NSMutableArray *allAttributes;
  15. @end
  16. NS_ASSUME_NONNULL_END