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

自定义NSLog

时间:2015-11-20 19:08:23      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

#if TARGET_IPHONE_SIMULATOR

#define NDLog(format, …) NSLog(format, ##_VAR_ARGS_)

#else

#define NDLog(format, …) {}

#endif

 

  当然,你如果不想多记一个自定义的Log函数,你还可以一不做二不休,直接重新定义下NSLog,代码如下:

#ifndef TARGET_IPHONE_SIMULATOR

#    define NSLog(...) NSLog(__VA_ARGS__)

#else

#    define NSLog(...) {}

#endif

自定义NSLog

标签:

原文地址:http://www.cnblogs.com/llhlj/p/4981671.html

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