UserBindViewController.h 536 B

12345678910111213141516171819202122232425262728
  1. //
  2. // UserBindViewController.h
  3. // FunSDKDemo
  4. //
  5. // Created by wujiangbo on 2018/11/2.
  6. // Copyright © 2018年 wujiangbo. All rights reserved.
  7. //
  8. /**
  9. 用户信息
  10. *1、输入需要绑定的手机(或者邮箱)
  11. *2、获取验证码
  12. *3、输入获取到的验证码,点击进行绑定
  13. */
  14. #import <UIKit/UIKit.h>
  15. NS_ASSUME_NONNULL_BEGIN
  16. @interface UserBindViewController : UIViewController
  17. @property (nonatomic, copy) void(^bindPhoneEmailSuccess)(void); //绑定手机号/邮箱成功
  18. @end
  19. NS_ASSUME_NONNULL_END