// // MiMOPch.pch // MiMoLive // // Created by SuperC on 2023/10/9. // #ifndef MiMOPch_pch #define MiMOPch_pch // Include any system framework and library headers here that should be included in all compilation units. // You will also need to set the Prefix Header build setting of one or more of your targets to reference this file. #pragma mark - 编译忽略警告 #pragma clang diagnostic ignored "-Wstrict-prototypes" //类型不严格。出现在block忽略了void返回值 #pragma clang diagnostic ignored "-Wdocumentation" //注释不规范 #pragma clang diagnostic ignored "-Wduplicate-method-match" //重复的方法声明 #pragma clang diagnostic ignored "-Wdeprecated-declarations" //方法过期 #pragma clang diagnostic ignored "-Wnullability-completeness" //属性未声明是否可选 #pragma clang diagnostic ignored "-Wnonnull" //不可选参数传入nil #pragma clang diagnostic ignored "-Wunused-variable"//未使用变量 #pragma clang diagnostic ignored "-Wobjc-property-no-attribute" //属性缺乏内存管理标签assign、strong等 #pragma clang diagnostic ignored "-Wshorten-64-to-32" //NSUInteger->int基本类型强转存在系统位数不一致 #pragma clang diagnostic ignored "--Wdeprecated-implementations"//实现了过期的代理方法 #import #import #import #import #import "MBProgressHUD.h" #import "MBProgressHUD+JDragon.h" #import #import #import "UITextView+WZB.h" #import #import "Adjust.h" #import "JXCategoryView.h" #import "CKShimmerLabel.h"//文本闪烁 #import "QGVAPlayer.h" #import "UINavigationController+MOPreventRepeat.h" //腾讯IM #import #import "MOTools.h" #import "MOGlobal.h" #import "MOTextTools.h" #import "BigBtn.h" #import "UIImageView+MOSvga.h" #import "UIButton+MOSvga.h" #import "MOTextAESTools.h" #import "UITableViewCell+POAccessory.h" #import "UIViewController+CustomNavigationBarItem.h" #import "UIView+Extension.h" #import "UIView+JCAddition.h" #import "NSString+Common.h" #import "NSDate+K1Util.h" #import "NSBundle+language.h" #import "UIButton+Extension.h" #import "UIImage+Extension.h" #import "MOHttpManager.h" #import "MODataCache.h" #import "MODataManager.h" #import "MOSvgaSourceManage.h" //Svga资源下载类 #import "MOShowAgoraKitManager.h" //直播管理类 #import "MOAgoraRTMManager.h" //直播RTM管理类 #import "MOSvgaManager.h" //Svga动画管理类 #import "MOInAppPurchaseManager.h" //内购管理类 #import "MORefreshViewManage.h" //刷新管理类 #import "MOChatHttpManage.h" //聊天管理类 #import "MODownloadManager.h" //文件下载类 #import "TEDownloader.h"//腾讯美颜下载 #import "MOTencentSendManage.h"//腾讯发送消息(使用环信时的双写逻辑) #import "MOChatNotificationManager.h"//聊天通知管理类 #import "MOTopFloatingManager.h"//直播间 - 顶部横幅管理类 #import "MOBubbleImageManager.h"//气泡拉伸管理类 #import "MOBeautyDownloadManager.h"//美颜资源下载/以及美颜资源映射 #import "MOMainTabController.h" #import "MOShowLiveVC.h" #import "MOLiveMsgBaseCell.h" #import "MONoMoreDataView.h" #import "MONoMoreSingleTipView.h" #import "MOHeadCustomView.h" #import "MOFansLevelView.h" #import "MOLiveSmallView.h" #import "MOBaseLevelView.h" #import "CKShimmerLabel.h" #import "MOShimmerLabel.h" //Alert #import "MOImageTitleAlertView.h" #import "MOTitleAndTefAlertView.h" #import "MOTitleNormalAlertView.h" #import "LBInputAlertView.h" #import "MOGetShowView.h" #import "MOActivityManageView.h" #import "MOStarNumView.h"//靓号 #import "MORoomNormalMenuView.h"//通用下方弹窗 #import "MOSystemAlertView.h" #import "MOThreeOptionAlertView.h" //Model #import "MOCountryList.h" #import "MORoomDataModels.h" #import "MOUserDataDataModels.h" //RTM #import "MORtmEntity.h" //Banner #import "MOBannerDataModels.h" //Alert #import "MOAlertBaseData.h" //位置单例 #import "MOLocationHelper.h" #import "MOLog.h" #if PREVIEW_MODE #import "MiMoLive_Preview-Swift.h" #else #import "MiMoLive-Swift.h" #endif #if !TARGET_IPHONE_SIMULATOR #import #endif #endif /* MiMOPch_pch */