美文网首页ios积累
xcode日志输出不完整处理

xcode日志输出不完整处理

作者: 凤鹃一鸣 | 来源:发表于2017-11-08 17:10 被阅读16次

#ifdef DEBUG

#define NSLog(FORMAT, ...) fprintf(stderr, "%s:%zd\t%s\n", [[[NSString stringWithUTF8String: __FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat: FORMAT, ## __VA_ARGS__] UTF8String]);

#else

#define NSLog(FORMAT, ...) nil

#endif

相关文章

网友评论

    本文标题:xcode日志输出不完整处理

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