123456789101112131415161718192021222324252627 |
- //
- // AuthCodeTextField.h
- // 隐私保护
- //
- // Created by xd h on 2023/11/7.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @class AuthCodeTextField;
- @protocol AuthCodeDeleteDelegate <NSObject>
- -(void)authCodeTextFieldDeleteBackward:(AuthCodeTextField *)textField;
- @end
- @interface AuthCodeTextField : UITextField
- @property (nonatomic,weak) id <AuthCodeDeleteDelegate>auth_delegate;
- @end
- NS_ASSUME_NONNULL_END
|