123456789101112131415161718192021222324 |
- //
- // AuthCodeInputView.h
- // 隐私保护
- //
- // Created by xd h on 2023/11/7.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void (^AuthCodeInputViewBlock)(BOOL success);
- @interface AuthCodeInputView :UIView
- -(instancetype)initWithFrame:(CGRect)frame;
- @property (nonatomic,copy) AuthCodeInputViewBlock authSuccess;
- @end
- NS_ASSUME_NONNULL_END
|