LoginViewController.h 927 B

123456789101112131415161718192021222324
  1. //
  2. // LoginViewController.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/7/5.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseViewController.h"
  9. #import "ULGView.h"
  10. @interface LoginViewController : BGBaseViewController<MBProgressHUDDelegate>
  11. @property (nonatomic, assign) int has_qq_login; // qq登录,0表示没有这个登录,1表示有这个登录
  12. @property (nonatomic, assign) int has_sina_login; // 新浪登录
  13. @property (nonatomic, assign) int has_wx_login; // 微信登录
  14. @property (nonatomic, assign) int has_mobile_login; // 手机登录
  15. @property (nonatomic, strong) ULGView *LView; // 三方登录的View
  16. @property (nonatomic, copy) NSString *loginType; //登入类型
  17. @property (nonatomic, copy) NSString *loginId; //登入id
  18. @property (nonatomic, copy) NSString *accessToken; //登入accessToken
  19. @end