美文网首页
xcode控制台输出不完整?

xcode控制台输出不完整?

作者: 一个萝卜X个坑 | 来源:发表于2018-03-14 10:21 被阅读779次

    别担心,把这个代码粘过去,放到你的pch文件就行了

    #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/tfoxqftx.html