常用预编译命令汇总

在pch中全局导入一些全局的头文件

#import <Availability.h>
#ifndef __IPHONE_5_0
#warning "This project uses features only available in iOS SDK 5.0 and later."
#endif
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#endif


定义一些整个项目需要的常量,比如IP,屏幕宽度等信息



#define ScreenWidth [[UIScreen mainScreen] bounds].size.width//获取屏幕宽度,兼容性测试
#define ScreenHeight [[UIScreen mainScreen] bounds].size.height//获取屏幕高度,兼容性测试
#define HOST @"www.baidu.com"
#define POST 8080



判断应用的iOS版本


NSLog时指名类名,方法名和函数

#ifdef DEBUG // 调试状态, 打开LOG功能
#define GJLog(...) NSLog(@"\nclass:\t%@ \nmethod: \t%s:  \nline:\t%d",[self class],__func__,__LINE__);NSLog(__VA_ARGS__)

#else
#define GJLog(...)

#endif


在程序中输出就需要调用GJLog,这样可以实现只在调试状态下输出,发布状态下没有输出,并且每个输出都有行号

输出效果如下所示

2015-08-24 11:47:37.247 Weibo[2699:72101] class:    AppDelegate
method:     -[AppDelegate application:didFinishLaunchingWithOptions:]:  
line:    24

2015-08-24 11:47:37.248 Weibo[2699:72101] abcv


导入全局的pch文件

  1. Command + N 然后在Other里面选择PCH File

  2. 在Build Settings里面找到Prefix Header常用预编译命令汇总

  3. 添加pch文件,规则是: 项目名/xxxxx.pch




常量的管理,用这个会更好,第一效率高,第二可以检查语法

http://www.xiaoyaoli.com/?p=929


判断系统是否支持一些功能

#if !__has_feature(objc_arc)
    //当没有使用自动内存管理的时候采用的代码
    -(void) release{

    }
#endif


你可能感兴趣的:(oc预编译命令)