AuthCodeTextField.h 427 B

123456789101112131415161718192021222324252627
  1. //
  2. // AuthCodeTextField.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/11/7.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @class AuthCodeTextField;
  10. @protocol AuthCodeDeleteDelegate <NSObject>
  11. -(void)authCodeTextFieldDeleteBackward:(AuthCodeTextField *)textField;
  12. @end
  13. @interface AuthCodeTextField : UITextField
  14. @property (nonatomic,weak) id <AuthCodeDeleteDelegate>auth_delegate;
  15. @end
  16. NS_ASSUME_NONNULL_END