DebugView.h 669 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // DebugView.h
  3. // Unity-iPhone
  4. // Created by duowan123 on 2021/12/22.
  5. #import <UIKit/UIKit.h>
  6. #import "MYFactoryManager.h"
  7. #import "SocketRocketUtility.h"
  8. #import "ShoesInfo.h"
  9. #define DebugViewInstance [DebugView sharedInstance]
  10. //#define JBSDKLog @".txt"
  11. @interface DebugView : UIView
  12. +(instancetype)sharedInstance;
  13. #pragma mark ===============================================>> DEBUG
  14. -(void)notificationStartGame;
  15. //数据写入沙河
  16. -(void)writeFileToplist;
  17. //上传沙盒文件
  18. -(void)uploadpPlistFile;
  19. //清理缓存
  20. - (void)clearCacheWithFilePath;
  21. //报文数据
  22. -(void)debugMessage:(NSString*)message shoesInfo:(ShoesInfo*)shoesInfo;
  23. @end