ForgetPasswordView.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // ForgetPasswordView.h
  3. // FunSDKDemo
  4. //
  5. // Created by wujiangbo on 2018/10/30.
  6. // Copyright © 2018年 wujiangbo. All rights reserved.
  7. //
  8. /**
  9. 忘记密码视图
  10. */
  11. #import <UIKit/UIKit.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface ForgetPasswordView : UIView
  14. @property (nonatomic, copy) void(^getCodeBtnClicked)(NSString *userPhone); //获取验证码点击事件
  15. @property (nonatomic, copy) void(^checkCodeBtnClicked)(NSString *userPhone,NSString *codeStr); //验证点击事件
  16. @property (nonatomic, copy) void(^resettingPwdBtnClicked)(NSString *userPhone,NSString *newPassword); //重置密码点击
  17. @property (nonatomic, strong) UITextField *userPhone; //手机号或者邮箱
  18. @property (nonatomic, strong) UITextField *inputCode; //验证码输入框
  19. @property (nonatomic, strong) UIButton *getCode; //获取验证码按钮
  20. @property (nonatomic, strong) UIButton *checkBtn; //验证按钮
  21. @property (nonatomic, strong) UIView *confirmPwdView; //按确定后 下一步显示的View 覆盖原来的确定按钮
  22. @property (nonatomic, strong) UILabel *userNameLabel; //显示用户名label
  23. @property (nonatomic, strong) UITextField *pwdField; //密码
  24. @property (nonatomic, strong) UIButton *confirmResettingPwdbtn; //确认重置密码
  25. @end
  26. NS_ASSUME_NONNULL_END