| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // JXMainLoginVc.h
- // shiku_im
- //
- // Created by 123 on 2020/5/6.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #define HEIGHT 35
- #define tyCurrentWindow [[UIApplication sharedApplication].windows firstObject]
- #import<UIKit/UIKit.h>
- typedef NS_ENUM(NSInteger, JXLoginNewType) {
- JXLoginNewQQ = 1, // QQ登录
- JXLoginNewWX , // 微信登录
- };
-
- @interface JXMainLoginVc : admobViewController
- {
- JXUserObject* _user;
- }
- @property(nonatomic, strong)NSURL *movieURL;
- //退出登录不要自动登录
- @property(assign)BOOL isAutogoLogin;
- @property(assign)BOOL isAutoLogin;
- @property(assign)BOOL isSwitchUser;
- @property (nonatomic, strong) UIImageView *launchImageView;
- @property (nonatomic, strong) UIButton *btn;
- @property (nonatomic, strong) JXLocation *location;
- @property (nonatomic, assign) BOOL isThirdLogin;
- @property (nonatomic, assign) BOOL isSMSLogin;
- @property (nonatomic, assign) JXLoginNewType type;
- @property (nonatomic, strong) NSString *isThirdTypeLogin;// 1 QQ登录 2 微信登录
- @property (nonatomic,weak) UIImageView *logoIMG;
- @end
-
|