HorizontalLayout.h 385 B

1234567891011121314151617
  1. //
  2. // HorizontalLayout.h
  3. // ZYXHorizontalFlowLayout
  4. //
  5. // Created by 张哈哈 on 2018/6/23.
  6. // Copyright © 2018年 zyx. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface HorizontalLayout : UICollectionViewFlowLayout
  10. /** 每行item数量*/
  11. @property (nonatomic,assign) NSInteger rowCount;
  12. /** 每列item数量*/
  13. @property (nonatomic,assign) NSInteger columCount;
  14. @end