You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
683 B
39 lines
683 B
4 years ago
|
//
|
||
|
// 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 */
|