InputViewForSMSCod.h 870 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // InputView.h
  3. // VclustersGemini
  4. //
  5. // Created by APPLE on 2019/6/10.
  6. // Copyright © 2019 APPLE. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol InputViewForSMSCodDelegate <NSObject>
  11. @optional
  12. - (void)smsCodeBtnBePressed:(id)sener smsCodeInputView:(UITextField *)inputView;
  13. @end
  14. @interface InputViewForSMSCod : UIView
  15. {
  16. // UITextField *phoneNumInput;
  17. // UITextField *pwdInput;
  18. }
  19. @property (nonatomic, strong,readonly) UITextField *phoneNumInput;
  20. @property (nonatomic, strong,readonly) UITextField *smsInput;
  21. @property (nonatomic, strong,readonly) UIButton *smsCodeBtn;
  22. @property (nonatomic, strong) UILabel *phoneErrorTipsLabel;
  23. @property (nonatomic, strong) UILabel *smsErrorTipsLabel;
  24. @property (nonatomic, weak) id<InputViewForSMSCodDelegate> delegate;
  25. - (void)hiddenKeyboard;
  26. @end
  27. NS_ASSUME_NONNULL_END