您的位置:首页 > 其它

[Cocoa] 定制 Prefix.pch文件

2011-10-16 20:58 281 查看
[Cocoa] 定制 Prefix.pch文件
罗朝辉(http://blog.csdn.net/kesalin/)
CC许可,转载请注明出处
扩展名 pch 表示 “precompliled header”,即预编译头文件,prefix.pch 为 XCode 工程默认生成的预编译头文件,在其中我们可以定制一些全局的宏,以方便开发。

下面贴一段来自
Cocoa Is My Girlfriend 定制的宏:

#ifdef DEBUG
  #define DLog(...) NSLog(@"%s %@", __PRETTY_FUNCTION__, [NSString stringWithFormat:__VA_ARGS__])
  #define ALog(...) [[NSAssertionHandler currentHandler] handleFailureInFunction:[NSString stringWithCString:__PRETTY_FUNCTION__ encoding:NSUTF8StringEncoding] file:[NSString stringWithCString:__FILE__ encoding:NSUTF8StringEncoding] lineNumber:__LINE__ description:__VA_ARGS__]
#else
  #define DLog(...) do { } while (0)
  #ifndef NS_BLOCK_ASSERTIONS
    #define NS_BLOCK_ASSERTIONS
  #endif
  #define ALog(...) NSLog(@"%s %@", __PRETTY_FUNCTION__, [NSString stringWithFormat:__VA_ARGS__])
#endif
 
#define ZAssert(condition, ...) do { if (!(condition)) { ALog(__VA_ARGS__); }} while(0)


详细解说请阅读原文,在这里我只说明其用法:

1,如果是 debug 模式下,需要在编译选项 Preprocessor
Macros 中设置 DEBUG 宏;

2,DLog 相当于 NSLog,但只在 debug 模式下有效;在
release 模式下,它什么也不做;

3,ALog 是 Assert Log 的简写,在 debug 模式下,相当于强制
assert;在 release 模式下,相当于 NSLog;

4,ZAssert 是带有条件判断的 ALog;

参考资料:

My current Prefix.pch file
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: