码迷,mamicode.com
首页 > 其他好文 > 详细

自定义NSLog

时间:2015-01-22 17:58:37      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

项目中自己搞了一个Log 记录一下.

?N年的代码了 还是觉得好用 

#ifdef DEBUG
#define DLog(FORMAT, ...)   fprintf(stderr,"%s:%d--> %s\n",[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);
#else
#define DLog(...)
#endif

?

"DEBUG"定义 在 "Target > Build Settings > Preprocessor Macros > Debug" 里有一个"DEBUG=1” 删除即可.

自定义NSLog

标签:

原文地址:http://www.cnblogs.com/jz319/p/4242029.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!