RegisterView.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // RegisterView.h
  3. // FunSDKDemo
  4. //
  5. // Created by wujiangbo on 2018/10/27.
  6. // Copyright © 2018年 wujiangbo. All rights reserved.
  7. //
  8. /**
  9. 注册账号界面视图
  10. */
  11. #import <UIKit/UIKit.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface RegisterView : UIView
  14. @property (nonatomic, copy) void(^getCodeBtnClicked)(NSString *phoneStr); //获取验证码
  15. @property (nonatomic, copy) void(^registerBtnClicked)(NSString *userName,NSString *password1,NSString *password2,NSString *phoneStr,NSString *codeStr); //注册按钮点击
  16. @property (nonatomic, copy) void(^btnPrivacyBtnClicked)(void); //点击查看隐私权限
  17. @property (nonatomic, strong) UITableView *tbSettings; //账号列表
  18. @property (nonatomic, strong) UIButton *registerBtn; //注册按钮
  19. @property (nonatomic, strong) UITextField *userNameTF; //用户名
  20. @property (nonatomic, strong) UITextField *pwdTF; //密码
  21. @property (nonatomic, strong) UITextField *confrimTF; //确认密码
  22. @property (nonatomic, strong) UIButton *jumpBtn; //跳过按钮
  23. @property (nonatomic, strong) UITextField *phoneTF; //手机邮箱输入
  24. @property (nonatomic, strong) UITextField *codeTF; //二维码输入框
  25. @property (nonatomic, strong) UIButton *getCodeBtn; //获取二维码
  26. @property (nonatomic, assign) NSInteger sendTime; //倒计时时间
  27. @property (nonatomic, strong) NSTimer *countDownTimer; //倒计时计时器
  28. @property (nonatomic,strong) UIButton *btnSelector; //选择隐私权限按钮
  29. @property (nonatomic,strong) UILabel *lbDescription; //隐私权限文字描述
  30. @property (nonatomic,strong) UIButton *btnPrivacy; //隐私权限按钮
  31. @property (nonatomic,strong) UILabel *errorTipLabel; //错误提示
  32. @end
  33. NS_ASSUME_NONNULL_END