YMCaptchaTextFlowLayout.h 497 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // YMCaptchaTextFlowLayout.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2023/5/5.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface YMCaptchaTextFlowLayout : UICollectionViewFlowLayout
  10. /** ifNeedEqualGap
  11. * default: YES
  12. */
  13. @property (nonatomic, assign) BOOL ifNeedEqualGap;
  14. @property (nonatomic, assign) NSInteger itemNum;
  15. /** minLineSpacing
  16. * default: 10
  17. */
  18. @property (nonatomic, assign) NSInteger minLineSpacing;
  19. - (void)autoCalucateLineSpacing;
  20. @end
  21. NS_ASSUME_NONNULL_END