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

自定义可注释的NSlog

时间:2014-11-26 13:47:58      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   os   sp   for   strong   on   log   

//.pch

//如果需要打印日志下行不注释,否:注释下行。

#define __SHOW__NSLOG__

 

#ifdef __SHOW__NSLOG__

#define DebugLog( s, ... ) NSLog( @"<%p %@:(%d)> %@", self, [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __LINE__, [NSString stringWithFormat:(s), ##__VA_ARGS__] )

#else

#define DebugLog( s, ... ) {}

#endif

 

选择工程的Target -> Build Settings -> Preprocessor Macros.

bubuko.com,布布扣

如图,默认 Debug项,是“DEBUG=1”.

自定义可注释的NSlog

标签:blog   http   ar   os   sp   for   strong   on   log   

原文地址:http://www.cnblogs.com/liman1990/p/4122764.html

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