123456789101112131415161718192021222324252627 |
- //
- // AppDelegate.h
- // XiaYue
- //
- // Created by Apple on 2019/11/7.
- // Copyright © 2019 XiaYue. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "LCWebSocketManager.h"
- @interface AppDelegate : UIResponder <UIApplicationDelegate>
- @property(nonatomic,strong)UIWindow *window;
- //add by leo crsh up
- @property(nonatomic,strong)LCWebSocketManager* ksocketManager;
- @property(nonatomic,strong)NSString *globalUUIDStr;
- @property(nonatomic,strong)NSMutableString *logRecoderStr;
- @property(nonatomic,strong)NSString *logCallTime;
- //青少年模式状态
- @property(nonatomic,assign)BOOL kadolescentStatus;
- //动态部分是否显示的是视频
- @property(nonatomic,assign)BOOL isDisplayVideoDynamicPage;
- @end
|