12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // JXSelfUserInfoVC.h
- // shiku_im
- //
- // Created by 123 on 2020/6/1.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "admobViewController.h"
- #import "JX_SelectMenuView.h"
- #import "JXGoogleMapVC.h"
- #import "JXChatViewController.h"
- #import "JXChatViewC.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface JXSelfUserInfoVC : admobViewController
- {
-
- int _friendStatus;
- }
- @property (nonatomic,strong) JXUserObject* user;
- @property (nonatomic,strong) UIView * bgBlackAlpha;
- @property (nonatomic,strong) JX_SelectMenuView * selectView;
- @property (nonatomic, assign) BOOL isJustShow;
- @property (nonatomic, assign) BOOL isShowGoinBtn;
- @property (nonatomic, copy) NSString *userId;
- @property (nonatomic, assign) int fromAddType;
- @property (nonatomic, weak) JXChatViewController *chatVC;
- @property (nonatomic, weak) JXChatViewC *chatVC2;
- @end
- NS_ASSUME_NONNULL_END
|