码迷,mamicode.com
首页 > 移动开发 > 详细

IOS应用发布NSLog的如何注释

时间:2014-08-07 21:36:50      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   os   io   文件   for   ar   

bubuko.com,布布扣

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

2 在程序中设置全局宏定义

在程序的 ApplicationName-Prefix.pch 文件中,加入如下,很简单

1
2
3
4
5
#ifdef DEBUG
#define DLog( s, ... ) NSLog( @"<%p %@:(%d)> %@", self, [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __LINE__, [NSString stringWithFormat:(s), ##__VA_ARGS__] )
#else
#define DLog( s, ... )
#endif

  

3 这样就设置好了,测试

在任意ViewController.m中写入 

DLog(@"1234");

结果:

2012-07-25 17:09:54.448 xxxx[7094:707] <0x28f790 ViewController.m:(64)> 1234

这样发布的时候DLog就不会有输出了。 

 

IOS应用发布NSLog的如何注释,布布扣,bubuko.com

IOS应用发布NSLog的如何注释

标签:style   blog   http   os   io   文件   for   ar   

原文地址:http://www.cnblogs.com/zhujin/p/3897809.html

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