PrefixHeader.pch 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. //
  2. // PrefixHeader.pch
  3. //
  4. //
  5. // Created by yhw on 2021/12/8.
  6. //
  7. #ifndef PrefixHeader_pch
  8. #define PrefixHeader_pch
  9. #ifdef DEBUG // 调试状态, 打开LOG功能
  10. #define KyoLog(fmt, ...) NSLog((@"%s [LinE %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
  11. #define KyoAlert(fmt, ...) { [[[UIAlertView alloc] initWithTitle:[NSString stringWithFormat:@"%s\n [LinE %d] ", __PRETTY_FUNCTION__, __LINE__] message:[NSString stringWithFormat:fmt, ##__VA_ARGS__] delegate:nil cancelButtonTitle:@"OK(debug mode)" otherButtonTitles:nil] show]; }
  12. #define XYLog(fmt, ...) NSLog((@"%s [LinE %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
  13. #else // 发布状态, 关闭LOG功能
  14. #define KyoLog(...) (void)0;
  15. #define KyoAlert(...) (void)0;
  16. #define XYLog(...) (void)0;
  17. #endif
  18. #define ksharedAppDelegate [AppDelegate sharedAppDelegate] // AppDelegate 单例
  19. /**第三方库*/
  20. #import "Masonry.h"
  21. #import "UIView+HWCategory.h"
  22. #import "UIScrollView+EmptyDataSet.h"
  23. #import "SVProgressHUD.h"
  24. /**工具类*/
  25. #import "iToast.h"
  26. #import "iTools.h"
  27. #import "HWDataManager.h"
  28. #import "NSObject+Extensions.h"
  29. /**配置文件*/
  30. #import "Const.h"
  31. #import "Enum.h"
  32. #import "Notification.h"
  33. #import "ColorDefine.h"
  34. #import "BaseModel.h"
  35. //网络相关
  36. #import "netWorkManager.h"
  37. #import "newWorkInterface.h"
  38. #import "AFNetworkReachabilityManager.h"
  39. #import "AppDelegate.h"
  40. #import "cachesFileManager.h"
  41. #import "ComontAlretViewController.h"
  42. #import "webRtcManager.h"
  43. #import "pingManager.h"
  44. #import "MJExtension.h"
  45. #import "RSATool.h"
  46. #import "lastFileManager.h"
  47. #import "DeviceThirdIdModel.h"
  48. #import "RCCommandHelp.h"
  49. #import "DFPlayer.h"
  50. #import "couldPhoneFileListModel.h"
  51. #import "uploadFileManager.h"
  52. #import "nasBackupsManager.h"
  53. #import "backupsFileManager.h"
  54. #import "boxDownloadFileManager.h"
  55. #import "nasDownloadFileManager.h"
  56. #import "audioPlayingView.h"
  57. #ifdef DEBUG // 调试状态, 打开LOG功能
  58. #define HLog(fmt, ...) NSLog((@"%@ %s [Line %d] " fmt),[iTools getNowTimeString3], __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
  59. #else // 发布状态, 关闭LOG功能
  60. #define HLog(...) (void)0;
  61. #endif
  62. #define globalBlock(block) dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), block)
  63. /**宏定义*/
  64. #define mainBlock(block) dispatch_async(dispatch_get_main_queue(), block)
  65. #define KWeakSelf __weak typeof(*&self) weakSelf = self; //block 快速宏定义
  66. #define RGBACOLOR(r,g,b,a) [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:(a)]
  67. #define SCREEN_W [[UIScreen mainScreen] bounds].size.width
  68. #define SCREEN_H [[UIScreen mainScreen] bounds].size.height
  69. #define H_NAV_BAR self.navigationController.navigationBar.frame.size.height
  70. #define H_STATE_BAR [[UIApplication sharedApplication] statusBarFrame].size.height
  71. #define WAUTOSCALE ([[UIScreen mainScreen] bounds].size.width / 375) // 缩放比例
  72. #define HAUTOSCALE ([[UIScreen mainScreen] bounds].size.height / 667)
  73. //泛指刘海屏
  74. #define IPHONE_X ({\
  75. BOOL isBangsScreen = NO; \
  76. if (@available(iOS 11.0, *)) { \
  77. UIWindow *window = [[UIApplication sharedApplication].windows firstObject]; \
  78. isBangsScreen = window.safeAreaInsets.bottom > 0; \
  79. } \
  80. isBangsScreen; \
  81. })
  82. #define safeArea (IPHONE_X ? 44.f : 0.f) //安全区域
  83. #define NAVIHEIGHT (IPHONE_X ? 88 : 64) //导航
  84. #define TABBARHEIGHT (IPHONE_X ? 83 : 49) // 分栏
  85. #define AdaptTabHeight (IPHONE_X ? 34 : 0) //Tabbar 圆角部分高度
  86. #define AdaptNaviHeight (IPHONE_X ? 24 : 0) //状态栏高度
  87. #define AUTOSCALE ([[UIScreen mainScreen] bounds].size.width / 375)
  88. #define WAUTOSCALE ([[UIScreen mainScreen] bounds].size.width / 375)
  89. #define HAUTOSCALE ([[UIScreen mainScreen] bounds].size.height / 667)
  90. //测试地址 正在使用
  91. //#define CloudService @""
  92. //预生产环境
  93. //#define CloudService @"http://testprivacy.phone.androidscloud.com:10900"
  94. //生产环境 1.4.3 开始使用
  95. #define CloudService @"http://cloud.sgbox.ai"
  96. #define shareService @""
  97. #define AESCODEKEEYY @"fvO8gAfNSr1tbdQe"
  98. //弃用
  99. //#define EachPieceSzie (512*1024) //每片上传文件大小切割
  100. #define EachPieceSzie (2*1024*1024) //每片上传文件大小切割
  101. #define cutVideoPieceSzie (3 * EachPieceSzie) //视频每次切片多少(切完上传再切一次)
  102. //正在使用
  103. #define MaxNasUploadPieceSzie (15*1024*1024) //frp上传 限制每片最大xx M
  104. #define keyToForgetPwd @"%==%"
  105. #define pageSizeNum 5//500 //分页数量大小
  106. #define FileService @"http://file.phone.androidscloud.com:8210/document/file/lowLevelMultipartUpload"
  107. #define Const_File_Access_Key @"ikIm5C0KjKNvusTF6tIH" //@"13d0arghebcc4cm49cf04"
  108. #define CloudGameService @"http://14.18.190.140:9090"
  109. #define FileAPPManifestKey Const_File_APP_Manifest_Key_test
  110. #define User_Info_tableName(userName) [[NSString alloc] initWithFormat:@"User_Info_tableName_%@",userName];
  111. #define stringKeyAddSn(key) [[NSString alloc] initWithFormat:@"%@_%@",key,ksharedAppDelegate.DeviceThirdIdMod.data.sn]
  112. #pragma mark 音频相关宏定义
  113. #define USEAAC NO
  114. #define AACTOPCM YES
  115. #define USEAQAAC NO
  116. #define USEOPENGL YES
  117. #define USELOCALKEYBOARD NO/*是否使用键盘透传*/
  118. //#define fullScreenShow NO
  119. #define P2PModelList_bg_tableName(userName) [[NSString alloc] initWithFormat:@"P2PModelList_bg_tableName_%@",userName];
  120. #define DB_HWBuryPointModelList_TableName @"DB_HWBuryPointModelList_New"
  121. #pragma mark - 云盘文件缓存路径
  122. /**云盘文件下载-文件缓存路径*/
  123. #define kPath_YunPan_Download_Folder [HWDataManager cachesPathForAccount:ksharedAppDelegate.DeviceThirdIdMod.data.sn fileFolder:@"download"]
  124. /**云盘文件上传-文件缓存路径*/
  125. #define kPath_YunPan_Upload_Folder [HWDataManager cachesPathForAccount:ksharedAppDelegate.DeviceThirdIdMod.data.sn fileFolder:@"Upload"]
  126. #endif /* PrefixHeader_pch */