// // AuthCodeInputView.h // 隐私保护 // // Created by xd h 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