PrefixHeader.pch 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. //
  2. // PrefixHeader.pch
  3. // 唔即云相册
  4. //
  5. // Created by 余衡武 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 "connectDeviceManager.h"
  41. #import "cachesFileManager.h"
  42. #import "ComontAlretViewController.h"
  43. #import "webSocketManager.h"
  44. #import "webRtcManager.h"
  45. #import "pingManager.h"
  46. #import "MJExtension.h"
  47. #import "RSATool.h"
  48. #import "lastFileManager.h"
  49. #ifdef DEBUG // 调试状态, 打开LOG功能
  50. #define HLog(fmt, ...) NSLog((@"%@ %s [Line %d] " fmt),[iTools getNowTimeString3], __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
  51. #else // 发布状态, 关闭LOG功能
  52. #define HLog(...) (void)0;
  53. #endif
  54. #define globalBlock(block) dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), block)
  55. /**宏定义*/
  56. #define mainBlock(block) dispatch_async(dispatch_get_main_queue(), block)
  57. #define KWeakSelf __weak typeof(*&self) weakSelf = self; //block 快速宏定义
  58. #define RGBACOLOR(r,g,b,a) [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:(a)]
  59. #define SCREEN_W [[UIScreen mainScreen] bounds].size.width
  60. #define SCREEN_H [[UIScreen mainScreen] bounds].size.height
  61. #define H_NAV_BAR self.navigationController.navigationBar.frame.size.height
  62. #define H_STATE_BAR [[UIApplication sharedApplication] statusBarFrame].size.height
  63. #define WAUTOSCALE ([[UIScreen mainScreen] bounds].size.width / 375) // 缩放比例
  64. #define HAUTOSCALE ([[UIScreen mainScreen] bounds].size.height / 667)
  65. //泛指刘海屏
  66. #define IPHONE_X ({\
  67. BOOL isBangsScreen = NO; \
  68. if (@available(iOS 11.0, *)) { \
  69. UIWindow *window = [[UIApplication sharedApplication].windows firstObject]; \
  70. isBangsScreen = window.safeAreaInsets.bottom > 0; \
  71. } \
  72. isBangsScreen; \
  73. })
  74. #define safeArea (IPHONE_X ? 44.f : 0.f) //安全区域
  75. #define NAVIHEIGHT (IPHONE_X ? 88 : 64) //导航
  76. #define TABBARHEIGHT (IPHONE_X ? 83 : 49) // 分栏
  77. #define AdaptTabHeight (IPHONE_X ? 34 : 0) //Tabbar 圆角部分高度
  78. #define AdaptNaviHeight (IPHONE_X ? 24 : 0) //状态栏高度
  79. #define AUTOSCALE ([[UIScreen mainScreen] bounds].size.width / 375)
  80. #define WAUTOSCALE ([[UIScreen mainScreen] bounds].size.width / 375)
  81. #define HAUTOSCALE ([[UIScreen mainScreen] bounds].size.height / 667)
  82. //#define CloudService @"http://14.18.190.141:11180"
  83. //#define CloudService @"http://14.18.190.141:1280"
  84. //创维盒子 测试地址 弃用
  85. //弃用 #define CloudService @"http://14.18.190.141:1801"
  86. //弃用 #define shareService @"http://testprivacy.phone.armclouding.com:1801/h5/#/pages/fileSharing/index?productType=Private-X&token="
  87. //创维盒子 测试地址 正在使用
  88. //#define CloudService @"http://testprivacy.phone.androidscloud.com:1801"
  89. //#define shareService @"http://testprivacy.phone.androidscloud.com:1801/h5/#/pages/fileSharing/index?productType=Private-X&token="
  90. //预生产环境
  91. #define CloudService @"http://testprivacy.phone.androidscloud.com:10900"
  92. #define shareService @"http://testprivacy.phone.androidscloud.com:10900/h5/#/pages/fileSharing/index?productType=Private-X&token="
  93. //生产环境 弃用
  94. //弃用 #define CloudService @"http://hiboxde.armclouding.com:7780"
  95. //弃用 #define shareService @"http://hiboxde.armclouding.com:7780/h5/#/pages/fileSharing/index?productType=Private-X&token="
  96. //生产环境 1.4.3 开始使用
  97. //#define CloudService @"http://hiboxde.androidscloud.com:7780"
  98. //#define shareService @"http://hiboxde.androidscloud.com:7780/h5/#/pages/fileSharing/index?productType=Private-X&token="
  99. #define AESCODEKEEYY @"fvO8gAfNSr1tbdQe"
  100. //弃用
  101. //#define EachPieceSzie (512*1024) //每片上传文件大小切割
  102. #define EachPieceSzie (2*1024*1024) //每片上传文件大小切割
  103. #define cutVideoPieceSzie (3 * EachPieceSzie) //视频每次切片多少(切完上传再切一次)
  104. //正在使用
  105. #define MaxNasUploadPieceSzie (15*1024*1024) //frp上传 限制每片最大xx M
  106. #define keyToForgetPwd @"%==%"
  107. #define pageSizeNum 5//500 //分页数量大小
  108. #define FileService @"http://file.phone.androidscloud.com:8210/document/file/lowLevelMultipartUpload"
  109. #define Const_File_Access_Key @"ikIm5C0KjKNvusTF6tIH" //@"13d0arghebcc4cm49cf04"
  110. #define CloudGameService @"http://14.18.190.140:9090"
  111. #define FileAPPManifestKey Const_File_APP_Manifest_Key_test
  112. #define WXAPPid @"wx9f3e477e0df9bf03"
  113. #define WXAppSecret @""
  114. #define wxuniversalLink @"https://c0b494fd81055077cdcd8bec3cddcb12.share2dlink.com/"
  115. #define QQAPPid @"102085690"
  116. #define QQUniversalLink @"https://c0b494fd81055077cdcd8bec3cddcb12.share2dlink.com/qq_conn/102085690"
  117. #define AirPaySecret @"shuangzixingiOSApp"
  118. #define User_Info_tableName(userName) [[NSString alloc] initWithFormat:@"User_Info_tableName_%@",userName];
  119. #define stringKeyAddSn(key) [[NSString alloc] initWithFormat:@"%@_%@",key,ksharedAppDelegate.DeviceThirdIdMod.data.sn]
  120. #pragma mark 音频相关宏定义
  121. #define USEAAC NO
  122. #define AACTOPCM YES
  123. #define USEAQAAC NO
  124. #define USEOPENGL YES
  125. #define USELOCALKEYBOARD NO/*是否使用键盘透传*/
  126. //#define fullScreenShow NO
  127. #define P2PModelList_bg_tableName(userName) [[NSString alloc] initWithFormat:@"P2PModelList_bg_tableName_%@",userName];
  128. #define DB_HWBuryPointModelList_TableName @"DB_HWBuryPointModelList_New"
  129. #define SignKey @"MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBAI3dVMa6FJr+Yhw4sZGk5G+OKAd4gUUVWP1KxplzC4J78WdRk7KMP05l1vkQdQaZmxfZaAlxdDEAZIZWokVUCn5VWEbgHtHoAd9E3GeLmtGKhpwZiLUntlSHrWoWy3/1whTUBoPYmsXQk43LIPaQj6NJ6zmonPLSxyLUdrGZ0DKTAgMBAAECgYApIWen6mF5ApH9bq6E9JLKiSOv7s9D8UmIvnpQGRvYLAk0lGFHHgRovXwTYCMd08E0q/LO8hbm8h8zF8EaaqBTyAiKrirQRe7rK7bkndJufe8kwZqJScE/exSHcqhfOXCWpHUlY6ryiZxCh/MUsLSk/0rHmDJCbUbAVHhb+m3s6QJBAPilttXa7OvAEWGF8ts0Vu5WIejr/gAFwXHr/2RCEbkcATm7XtH0XXouohW9Y0pF0pKS0B4EwVQk/Kd9T2KSq38CQQCSD0K1il2cwg1WVCXBNsRUTW9VhjCp8+VVRFqAGLC6hArwYA6HU2y8UewD/tsuxgNgHGDTHxpy2wmOXGreR5LtAkBgTJ4BOWbk72BL6vrh1uWMLSO4+B1JmPEQ1Bv3kncWwDfhSiYxHnlNpt3zmYPo8h3Z0q5z0demZSTNIYUrYi61AkAGnDYyrR5rd8TOwWQsCGR+RDrjrf0J1AXvA/bskTF+X3d3RYGi0j27kCGUVLZquX9xnBctttylkhAupzQW9zpJAkEAvDoRbyZbj/DpacJF8lnIKyn9BkEC2otl/1vA5Xh/iQmNAhuriZbW7ElmWSNC+AObsnNbxa4UED3Ba52bb299Tg=="
  130. #pragma mark - 云盘文件缓存路径
  131. /**云盘文件下载-文件缓存路径*/
  132. #define kPath_YunPan_Download_Folder [HWDataManager cachesPathForAccount:ksharedAppDelegate.DeviceThirdIdMod.data.sn fileFolder:@"download"]
  133. /**云盘文件上传-文件缓存路径*/
  134. #define kPath_YunPan_Upload_Folder [HWDataManager cachesPathForAccount:ksharedAppDelegate.DeviceThirdIdMod.data.sn fileFolder:@"Upload"]
  135. #endif /* PrefixHeader_pch */