// // AuthCodeInputView.h // GBOX // // Created by David on 2023/11/7. // #import 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