项目中自己搞了一个Log 记录一下.
N年的代码了 还是觉得好用 #ifdef DEBUG #define DLog(FORMAT, ...) fprintf(stderr,"%s:%d--> %s ",[[[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” 删除即可.