1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- //
- // PrefixHeader.pch
- // JSJPCoach
- //
- // Created by apple on 2017/3/20.
- // 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>
- #import "AppDelegate.h"
- #import "UIFormatter.h"
- #import "DataAndEnum.h"
- #import "Util.h"
- #import "UserInfo.h"
- #import "jiaPeiManager.h"
- #import "LoadingView.h"
- #import "HolderView.h"
- #import "Tools.h"
- #import "UIView+Setter.h"
- #import "UIView+Frame.h"
- #import "UIImage+Setter.h"
- #import "NSString+ex.h"
- #import "MtArray+Setter.h"
- #import "UIImageView+WebCache.h"
- #import "Masonry.h"
- #import "ReactiveObjC.h"
- #import "UIView+RQExtension.h"
- #import "SCLAlertView.h"
- #import "BUSplashAdView+RQExtension.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 <BUAdSDK/BUAdSDK.h>
- #import <ADCDN/ADCDN.h>
- #import <GDTMobSDK/GDTSplashAd.h>
- #import "RQShareFunction.h"
- #import "RQADViewManager.h"
- //______________
- /**一个全局的单例。
- 这个地方可以放入版本判断信息 如果版本太低 不能打开 并告诉用户最低支持的版本信息--danson
- */
- #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
- #ifdef __OBJC__
- #import <UIKit/UIKit.h>
- #import <Foundation/Foundation.h>
- #endif /* PrefixHeader_pch */
|