123456789101112131415161718192021222324 |
- //
- // AuthCodeInputView.h
- // GBOX
- //
- // Created by David 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
|