.pch文件预编译文件

						.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



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值