12345678910111213141516171819202122232425262728293031323334 |
- //
- // DebugView.h
- // Unity-iPhone
- // Created by duowan123 on 2021/12/22.
- #import <UIKit/UIKit.h>
- #import "MYFactoryManager.h"
- #import "SocketRocketUtility.h"
- #import "ShoesInfo.h"
- #define DebugViewInstance [DebugView sharedInstance]
- //#define JBSDKLog @".txt"
- @interface DebugView : UIView
- +(instancetype)sharedInstance;
- #pragma mark ===============================================>> DEBUG
- -(void)notificationStartGame;
- //数据写入沙河
- -(void)writeFileToplist;
- //上传沙盒文件
- -(void)uploadpPlistFile;
- //清理缓存
- - (void)clearCacheWithFilePath;
-
- //报文数据
- -(void)debugMessage:(NSString*)message shoesInfo:(ShoesInfo*)shoesInfo;
- @end
|