Xcode 8 Log显示不全问题
2016-09-23 本文已影响0人
L_W
1.替换系统Log 输出带 类名 行数
#ifdef DEBUG
#define NSLog(FORMAT, ...) fprintf(stderr,"%s [line: %d] %s\n",[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);
#endif
把以上代码写到自己的pch 文件里面就行了