美文网首页
Xcode 8 Log显示不全问题

Xcode 8 Log显示不全问题

作者: L_W | 来源:发表于2016-09-23 14:53 被阅读0次

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 文件里面就行了

相关文章

网友评论

      本文标题:Xcode 8 Log显示不全问题

      本文链接:https://www.haomeiwen.com/subject/dfdmsttx.html