123456789101112131415161718192021222324252627282930 |
- //
- // YMCaptchaTextFlowLayout.h
- // MSYOUPAI
- //
- // Created by YoMi on 2023/5/5.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YMCaptchaTextFlowLayout : UICollectionViewFlowLayout
- /** ifNeedEqualGap
- * default: YES
- */
- @property (nonatomic, assign) BOOL ifNeedEqualGap;
- @property (nonatomic, assign) NSInteger itemNum;
- /** minLineSpacing
- * default: 10
- */
- @property (nonatomic, assign) NSInteger minLineSpacing;
- - (void)autoCalucateLineSpacing;
- @end
- NS_ASSUME_NONNULL_END
|