iOS PCH文件

PCH文件  — Prefix.pch

#define MJLog(…)NSLog(__VA_ARGS__)
 
NSPersistentstorecoordinator
 
 
#ifdef __OBJC__ //里面的所有内容只能用到.m文件中
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
 
#endif
 
 
#ifdef DEBUG // 调试阶段
#define MJLog(…)NSLog(__VA_ARGS__)
#else //发布阶段
#define MJLog(...)
#endif
原文地址:https://www.cnblogs.com/wohaoxue/p/4958917.html