标签:
项目中自己搞了一个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” 删除即可.
标签:
原文地址:http://www.cnblogs.com/jz319/p/4242029.html