123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // PrefixHeader.pch
- // LN_School
- //
- // Created by apple on 2017/4/5.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #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 <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- //客服
- #define kScreenWidth [[UIScreen mainScreen] bounds].size.width
- #define kMainCellColor [UIColor colorWithRed:248/255.0 green:248/255.0 blue:255/255.0 alpha:1]
- #define kInputViewHeight 50
- #define QM_IS_IPHONEX (([[UIScreen mainScreen] bounds].size.height-812)?NO:YES)
- #define kScreenHeight (QM_IS_IPHONEX ? ([[UIScreen mainScreen] bounds].size.height - 34) : ([[UIScreen mainScreen] bounds].size.height))
- #import "UIImage+GIF.h"
- #import "MLEmojiLabel.h"
- #import "QMDateManager.h"
- //______________
- #import "AppDelegate.h"
- #import "DataAndEnum.h"
- #import "UI_Formatter&Function.h"
- #import "UserInfo.h"
- #import "Tools.h"
- #import "HolderView.h"
- #import "NetManager.h"
- #import <MJRefresh.h>
- #import "MBProgressHUD+DS.h"
- #import "UIView+Frame.h"
- #import <UIImageView+WebCache.h>
- #import "THDatePickerViewController.h"
- #import "ReactiveObjC.h"
- #import "Masonry.h"
- #import "RQShareFunction.h"
- #import "HDCollectionView.h"
- #import "UIView+HDSafeArea.h"
- #import <Colours/Colours.h>
- #import <YYWebImage/YYWebImage.h>
- #import <YYText.h>
- #import "UIView+gesture.h"
- #import "UIView+RQExtension.h"
- #import <YYCategories.h>
- #define myDelegate ((AppDelegate* )[[UIApplication sharedApplication]delegate])
- #ifdef DEBUG // 开发阶段-DEBUG阶段:使用Log
- #define NSLog(FORMAT, ...) fprintf(stderr,"%s:%d\t%s\n",[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);
- #else // 发布阶段-上线阶段:移除Log
- #define NSLog(FORMAT, ...) nil
- #endif
- #endif /* PrefixHeader_pch */
|