12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // YMCaptchaTextCell.h
- // MSYOUPAI
- //
- // Created by YoMi on 2023/5/5.
- //
- #import <UIKit/UIKit.h>
- #import "YMCaptchaTextCellProperty.h"
- NS_ASSUME_NONNULL_BEGIN
- #define YMCaptchaTextCursoryAnimationKey @"YMCaptchaTextCursoryAnimationKey"
- #define YMCaptchaTextCellID @"YMCaptchaTextCellID"
- @interface YMCaptchaTextCell : UICollectionViewCell
- /**
- cursor
- You should not use these properties, unless you know what you are doing.
- */
- @property (nonatomic, strong) UIView *cursorView;
- @property (nonatomic, assign) BOOL ifNeedCursor;
- /**
- captchaTextCellProperty
- You should not use these properties, unless you know what you are doing.
- */
- @property (nonatomic, strong) YMCaptchaTextCellProperty *captchaTextCellProperty;
- // 你可以在继承的子类中重写父类方法
- // You can inherit and rewrite
- - (UIView *)createCustomSecurityView __deprecated_msg("Please use `customSecurityViewBlock` in YMCaptchaTextCellProperty.");
- @end
- NS_ASSUME_NONNULL_END
|