美文网首页iOS进阶指南
解决Xcode8 控制台打印内容被截取

解决Xcode8 控制台打印内容被截取

作者: 嗷大喵 | 来源:发表于2016-09-26 16:53 被阅读211次

    升级到Xcode8后,控制台NSLog打印的内容被截取了显示不全。
    可以用下面的宏定义来打印全

    #if DEBUG
    #define NSLog(format, ...) do {                                             \
    fprintf(stderr, "<%s : line(%d)> %s\n",     \
    [[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String],  \
    __LINE__, __func__);                        \
    printf("%s\n", [[NSString stringWithFormat:format, ##__VA_ARGS__] UTF8String]);           \
    fprintf(stderr, "-------------------\n");   \
    } while (0)
    #else
    #define NSLog(format, ...) nil
    #endif
    

    相关文章

      网友评论

        本文标题:解决Xcode8 控制台打印内容被截取

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