UserBindView.h 826 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // UserBindView.h
  3. // FunSDKDemo
  4. //
  5. // Created by wujiangbo on 2018/11/2.
  6. // Copyright © 2018年 wujiangbo. All rights reserved.
  7. //
  8. /**
  9. 用户手机号或者邮箱绑定界面视图
  10. */
  11. #import <UIKit/UIKit.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface UserBindView : UIView
  14. @property (nonatomic, copy) void(^getCodeBtnClicked)(NSString *phoneEmail); //获取验证码
  15. @property (nonatomic, copy) void(^bindBtnClicked)(NSString *phoneEmail,NSString *code); //绑定手机号/邮箱
  16. @property (nonatomic) UITextField *phoneEmailTF; //邮箱/手机号输入框
  17. @property (nonatomic) UITextField *codeTF; //验证码输入框
  18. @property (nonatomic) UIButton *getCodeBtn; //获取验证码按钮
  19. @property (nonatomic) UIButton *bindBtn; //绑定按钮
  20. @end
  21. NS_ASSUME_NONNULL_END