106 lines
2.3 KiB
Plaintext
106 lines
2.3 KiB
Plaintext
//
|
|
// PrefixHeader.pch
|
|
// HiBit
|
|
//
|
|
// Created by HI_LOSER on 2024/6/7.
|
|
//
|
|
|
|
#ifndef PrefixHeader_pch
|
|
#define PrefixHeader_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.
|
|
|
|
#import "HBDefines.h"
|
|
|
|
// 第三方sdk的appkey
|
|
#import "HBThirdKeys.h"
|
|
|
|
// 项目中一些常用的 string
|
|
#import "HBCommonKeys.h"
|
|
|
|
// 多语言管理
|
|
#import "HBMultiLanguageManager.h"
|
|
|
|
// 布局管理
|
|
#import <Masonry/Masonry.h>
|
|
|
|
// 网络图片
|
|
#import <SDWebImage/SDWebImage.h>
|
|
|
|
// FaceBook登录
|
|
#import <FBSDKLoginKit/FBSDKLoginKit.h>
|
|
|
|
// FaceBook分享
|
|
#import <FBSDKShareKit/FBSDKShareKit.h>
|
|
|
|
// Google登录
|
|
#import <GoogleSignIn/GoogleSignIn.h>
|
|
|
|
// Instagram 列表库
|
|
#import <IGListKit/IGListKit.h>
|
|
|
|
// 富文本
|
|
#import <YYText/YYText.h>
|
|
|
|
// 空数据
|
|
#import <DZNEmptyDataSet/UIScrollView+EmptyDataSet.h>
|
|
|
|
// 分页控制器
|
|
#import <JXPagingView/JXPagerView.h>
|
|
#import <JXPagingView/JXPagerListRefreshView.h>
|
|
#import <JXCategoryView/JXCategoryView.h>
|
|
|
|
// 刷新控件
|
|
#import <MJRefresh/MJRefresh.h>
|
|
|
|
// 数据模型转换
|
|
#import <MJExtension/MJExtension.h>
|
|
|
|
// 模态底部弹出控制器
|
|
#import <HWPanModal/HWPanModal.h>
|
|
|
|
// 吐司
|
|
#import <Toast/UIView+Toast.h>
|
|
|
|
// 密码串
|
|
#import <SAMKeychain/SAMKeychain.h>
|
|
|
|
// 使用Swift TikTokOpenSDKCore TikTokOpenShareSDK
|
|
#import "HiBit-Bridging-Header.h"
|
|
|
|
|
|
/// 分类
|
|
#import "UIView+Frame.h"
|
|
#import "UIView+Extension.h"
|
|
#import "NSLayoutConstraint+BSIBDesignable.h"
|
|
#import "UIImage+Category.h"
|
|
#import "UIFont+Category.h"
|
|
#import "UIDevice+Extension.h"
|
|
#import "NSString+Tools.h"
|
|
#import "NSString+Extension.h"
|
|
#import "NSUserDefaults+Extesion.h"
|
|
#import "UIImageView+Extension.h"
|
|
#import "UITextField+Category.h"
|
|
#import "UIScreen+Extension.h"
|
|
#import "NSNotificationCenter+Extension.h"
|
|
|
|
|
|
|
|
// 自定义控件
|
|
#import "HBColor.h"
|
|
#import "RSButton.h"
|
|
#import "HUDManager.h"
|
|
//#import "HBNavigationController.h"
|
|
//#import "HBAlertView.h"
|
|
//#import "HBTextField.h"
|
|
//#import "HBRefreshNormalHeader.h"
|
|
//#import "HBRefreshAutoNormalFooter.h"
|
|
#import "KxMenu.h"
|
|
|
|
//#import "GKDYPlayerViewController.h"
|
|
//#import "HBWebViewController.h"
|
|
// 数据请求
|
|
//#import "HBNetWorkingUtility+Services.h"
|
|
#endif /* PrefixHeader_pch */
|