YMCaptchaTextCell.h 967 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // YMCaptchaTextCell.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2023/5/5.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "YMCaptchaTextCellProperty.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. #define YMCaptchaTextCursoryAnimationKey @"YMCaptchaTextCursoryAnimationKey"
  11. #define YMCaptchaTextCellID @"YMCaptchaTextCellID"
  12. @interface YMCaptchaTextCell : UICollectionViewCell
  13. /**
  14. cursor
  15. You should not use these properties, unless you know what you are doing.
  16. */
  17. @property (nonatomic, strong) UIView *cursorView;
  18. @property (nonatomic, assign) BOOL ifNeedCursor;
  19. /**
  20. captchaTextCellProperty
  21. You should not use these properties, unless you know what you are doing.
  22. */
  23. @property (nonatomic, strong) YMCaptchaTextCellProperty *captchaTextCellProperty;
  24. // 你可以在继承的子类中重写父类方法
  25. // You can inherit and rewrite
  26. - (UIView *)createCustomSecurityView __deprecated_msg("Please use `customSecurityViewBlock` in YMCaptchaTextCellProperty.");
  27. @end
  28. NS_ASSUME_NONNULL_END