123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // PrefixHeader.pch
- // IMSDK-OC
- //
- // Created by HCF on 16/3/9.
- // Copyright © 2016年 HCF. 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 "MyDefHeader.h"
- #import "Tools.h"
- #import "UIButton+ex.h"
- #import "NSString+ex.h"
- #import "HolderView.h"
- #import <MJRefresh.h>
- #import "UI_Formatter&Function.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 "QMChatRoomViewController.h"
- #import <QMLineSDK/QMLineSDK.h>
- #import "QMAlert.h"
- #import "MyUINavigationController.h"
- #import "UIImage+GIF.h"
- #import "UIImageView+WebCache.h"
- #import "MLEmojiLabel.h"
- #import "QMDateManager.h"
- #import <ReactiveObjC/ReactiveObjC.h>
- //-----------
- #import "MapManager.h"
- #import "RQCategory.h"
- #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 */
|