AuthCodeInputView.h 366 B

123456789101112131415161718192021222324
  1. //
  2. // AuthCodeInputView.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/11/7.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef void (^AuthCodeInputViewBlock)(BOOL success);
  10. @interface AuthCodeInputView :UIView
  11. -(instancetype)initWithFrame:(CGRect)frame;
  12. @property (nonatomic,copy) AuthCodeInputViewBlock authSuccess;
  13. @end
  14. NS_ASSUME_NONNULL_END