标签:io os 使用 ar 文件 sp cti log on
//DLog代替NSLog
//debugMethod() 代替 NSLog(@"%s", __func__)
//DLog在release下不会输出
#ifdef DEBUG
# define DLog(fmt, ...) NSLog((@"[文件名:%s]\n" "[函数名:%s]\n" "[行号:%d] \n" fmt), __FILE__, __FUNCTION__, __LINE__, ##__VA_ARGS__);
#define debugMethod() NSLog(@"%s", __func__)
#else
# define DLog(...);
#define debugMethod()
#endif
标签:io os 使用 ar 文件 sp cti log on
原文地址:http://www.cnblogs.com/weiboyuan/p/3968261.html