59 lines
1.5 KiB
Plaintext
59 lines
1.5 KiB
Plaintext
//
|
|
// PrefixHeader.pch
|
|
// YuMi
|
|
//
|
|
// Created by admin on 2023/3/9.
|
|
//
|
|
|
|
#ifndef PrefixHeader_pch
|
|
#define PrefixHeader_pch
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#define AppName ([[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleDisplayName"])
|
|
|
|
#define isEnterprise \
|
|
({BOOL isEnterprise = NO;\
|
|
if (@available(iOS 11.0, *)) {\
|
|
NSString *bundleID = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleIdentifier"];\
|
|
isEnterprise = [bundleID isEqualToString:@"com.hflighting.yumi"];\
|
|
}\
|
|
(isEnterprise);})
|
|
|
|
#ifdef DEBUG
|
|
#define NSLog(fmt,...) NSLog((@"%s [Line %d]" fmt),__PRETTY_FUNCTION__,__LINE__,##__VA_ARGS__)
|
|
#else
|
|
#define NSLog(...)
|
|
#endif
|
|
#import <MJRefresh/MJRefresh.h>
|
|
#import "YUMIMacroUitls.h"
|
|
#import <Masonry/Masonry.h>
|
|
#import "NSArray+Safe.h"
|
|
#import "NSMutableArray+Safe.h"
|
|
#import "UIImage+Utils.h"
|
|
#import "XNDJTDDLoadingTool.h"
|
|
#import "DJDKMIMOMColor.h"
|
|
#import "YUMIHtmlUrl.h"
|
|
#import "NSArray+Safe.h"
|
|
#import "NSString+Utils.h"
|
|
#import "UIView+Corner.h"
|
|
#import "UIView+GradientLayer.h"
|
|
#import "UILabel+Utils.h"
|
|
#import "TTPopup.h"
|
|
#import "NSDate+DateUtils.h"
|
|
#import "NSMutableDictionary+Saft.h"
|
|
#import "NetImageView.h"
|
|
#import "AccountInfoStorage.h"
|
|
#import "YYUtility.h"
|
|
#import <MJExtension/MJExtension.h>
|
|
#import "YUMIConstant.h"
|
|
#import "YUMINNNN.h"
|
|
#import "NSObject+MJExtension.h"
|
|
#import "HttpRequestHelper.h"
|
|
#import "BSNetListenModel.h"
|
|
#import "PIBaseModel.h"
|
|
#import "PLTimeUtil.h"
|
|
#import "UIImage+ImageEffects.h"
|
|
#import "SZTextView.h"
|
|
#endif /* PrefixHeader_pch */
|