MiMOPch.pch 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. //
  2. // MiMOPch.pch
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/10/9.
  6. //
  7. #ifndef MiMOPch_pch
  8. #define MiMOPch_pch
  9. // Include any system framework and library headers here that should be included in all compilation units.
  10. // You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.
  11. #pragma mark - 编译忽略警告
  12. #pragma clang diagnostic ignored "-Wstrict-prototypes" //类型不严格。出现在block忽略了void返回值
  13. #pragma clang diagnostic ignored "-Wdocumentation" //注释不规范
  14. #pragma clang diagnostic ignored "-Wduplicate-method-match" //重复的方法声明
  15. #pragma clang diagnostic ignored "-Wdeprecated-declarations" //方法过期
  16. #pragma clang diagnostic ignored "-Wnullability-completeness" //属性未声明是否可选
  17. #pragma clang diagnostic ignored "-Wnonnull" //不可选参数传入nil
  18. #pragma clang diagnostic ignored "-Wunused-variable"//未使用变量
  19. #pragma clang diagnostic ignored "-Wobjc-property-no-attribute" //属性缺乏内存管理标签assign、strong等
  20. #pragma clang diagnostic ignored "-Wshorten-64-to-32" //NSUInteger->int基本类型强转存在系统位数不一致
  21. #pragma clang diagnostic ignored "--Wdeprecated-implementations"//实现了过期的代理方法
  22. #import <Masonry.h>
  23. #import <SDWebImage.h>
  24. #import <AFNetworking.h>
  25. #import <YYKit/YYCache.h>
  26. #import "MBProgressHUD.h"
  27. #import "MBProgressHUD+JDragon.h"
  28. #import <MJRefresh/MJRefresh.h>
  29. #import <IQKeyboardManager/IQKeyboardManager.h>
  30. #import "UITextView+WZB.h"
  31. #import <YYKit/NSObject+YYModel.h>
  32. #import "Adjust.h"
  33. #import "JXCategoryView.h"
  34. #import "CKShimmerLabel.h"//文本闪烁
  35. #import "QGVAPlayer.h"
  36. #import "UINavigationController+MOPreventRepeat.h"
  37. //腾讯IM
  38. #import <ImSDK_Plus/ImSDK_Plus.h>
  39. #import "MOTools.h"
  40. #import "MOGlobal.h"
  41. #import "MOTextTools.h"
  42. #import "BigBtn.h"
  43. #import "UIImageView+MOSvga.h"
  44. #import "UIButton+MOSvga.h"
  45. #import "MOTextAESTools.h"
  46. #import "UITableViewCell+POAccessory.h"
  47. #import "UIViewController+CustomNavigationBarItem.h"
  48. #import "UIView+Extension.h"
  49. #import "UIView+JCAddition.h"
  50. #import "NSString+Common.h"
  51. #import "NSDate+K1Util.h"
  52. #import "NSBundle+language.h"
  53. #import "UIButton+Extension.h"
  54. #import "UIImage+Extension.h"
  55. #import "MOHttpManager.h"
  56. #import "MODataCache.h"
  57. #import "MODataManager.h"
  58. #import "MOSvgaSourceManage.h" //Svga资源下载类
  59. #import "MOShowAgoraKitManager.h" //直播管理类
  60. #import "MOAgoraRTMManager.h" //直播RTM管理类
  61. #import "MOSvgaManager.h" //Svga动画管理类
  62. #import "MOInAppPurchaseManager.h" //内购管理类
  63. #import "MORefreshViewManage.h" //刷新管理类
  64. #import "MOChatHttpManage.h" //聊天管理类
  65. #import "MODownloadManager.h" //文件下载类
  66. #import "TEDownloader.h"//腾讯美颜下载
  67. #import "MOTencentSendManage.h"//腾讯发送消息(使用环信时的双写逻辑)
  68. #import "MOChatNotificationManager.h"//聊天通知管理类
  69. #import "MOTopFloatingManager.h"//直播间 - 顶部横幅管理类
  70. #import "MOBubbleImageManager.h"//气泡拉伸管理类
  71. #import "MOBeautyDownloadManager.h"//美颜资源下载/以及美颜资源映射
  72. #import "MOMainTabController.h"
  73. #import "MOShowLiveVC.h"
  74. #import "MOLiveMsgBaseCell.h"
  75. #import "MONoMoreDataView.h"
  76. #import "MONoMoreSingleTipView.h"
  77. #import "MOHeadCustomView.h"
  78. #import "MOFansLevelView.h"
  79. #import "MOLiveSmallView.h"
  80. #import "MOBaseLevelView.h"
  81. #import "CKShimmerLabel.h"
  82. #import "MOShimmerLabel.h"
  83. //Alert
  84. #import "MOImageTitleAlertView.h"
  85. #import "MOTitleAndTefAlertView.h"
  86. #import "MOTitleNormalAlertView.h"
  87. #import "LBInputAlertView.h"
  88. #import "MOGetShowView.h"
  89. #import "MOActivityManageView.h"
  90. #import "MOStarNumView.h"//靓号
  91. #import "MORoomNormalMenuView.h"//通用下方弹窗
  92. #import "MOSystemAlertView.h"
  93. #import "MOThreeOptionAlertView.h"
  94. //Model
  95. #import "MOCountryList.h"
  96. #import "MORoomDataModels.h"
  97. #import "MOUserDataDataModels.h"
  98. //RTM
  99. #import "MORtmEntity.h"
  100. //Banner
  101. #import "MOBannerDataModels.h"
  102. //Alert
  103. #import "MOAlertBaseData.h"
  104. //位置单例
  105. #import "MOLocationHelper.h"
  106. #import "MOLog.h"
  107. #if PREVIEW_MODE
  108. #import "MiMoLive_Preview-Swift.h"
  109. #else
  110. #import "MiMoLive-Swift.h"
  111. #endif
  112. #if !TARGET_IPHONE_SIMULATOR
  113. #import <ShareSDK/ShareSDK.h>
  114. #endif
  115. #endif /* MiMOPch_pch */