.pch文件预编译文件
xcode6 的预编译文件 没有了 我们可以自己手动添加
1.new file -》other-》 创建的xxx.pch
2.build settings -> Prefix Header -》添加 xxx.pch在代码工程中的路径
1.相对代码工程的路径 PicketKitchen/PicketKitchen.pch
2.或者写通过 环境变量 获取当前代码全路径$(PROJECT_DIR)/PicketKitchen/PicketKitchen-Prefix.pch
或者$(SRCROOT)/PicketKitchen/PicketKitchen-Prefix.pch
#ifdef DEBUG
#define NSLog(...) NSLog(__VA_ARGS__)
#else
#define NSLog(...) {}
#endif
//以前 xcode (xcode6之前) 自动 创建一个xxxx.pch预编译文件,我们可以把一些常用的一些宏定义或者头文件都在预编译文件中 写出来,那么在其他文件 就可以不用再写了
//new file——>Other—>PCH模板—》创建一个预编译文件
预编译中写入
#import <Availability.h>
#ifndef __IPHONE_3_0
#warning "This project uses features only available in iOS SDK 3.0 and later."
#endif
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#endif
然后在Build settings 中 搜索Prefix header
.pch文件预编译文件
最新推荐文章于 2023-03-22 00:04:39 发布