39 lines
683 B
Plaintext
39 lines
683 B
Plaintext
//
|
|
// TFPrefixHeader.pch
|
|
// TFReader
|
|
//
|
|
// Created by 谢腾飞 on 2020/12/21.
|
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved.
|
|
//
|
|
|
|
#ifndef TFPrefixHeader_pch
|
|
#define TFPrefixHeader_pch
|
|
|
|
#ifdef __OBJC__
|
|
|
|
#import "TFSettingConfig.h"
|
|
#import "TFSwitchConfig.h"
|
|
#import "TFServerConfig.h"
|
|
#import "TFColorConfig.h"
|
|
#import "TFNotificationConfig.h"
|
|
#import "TFFrameConfig.h"
|
|
#import "TFImportConfig.h"
|
|
#import "TFSystemConfig.h"
|
|
#import "TFMemoryConfig.h"
|
|
#import "TFDefineConfig.h"
|
|
|
|
|
|
/*** 日志 ***/
|
|
#ifdef DEBUG
|
|
#define TFLog(...) NSLog(__VA_ARGS__)
|
|
#else
|
|
#define TFLog(...)
|
|
#endif
|
|
|
|
#define TFLogFunc TFLog(@"%s", __func__);
|
|
|
|
|
|
#endif
|
|
|
|
#endif /* TFPrefixHeader_pch */
|