美文网首页
Xcode 8 一些调整

Xcode 8 一些调整

作者: 正经的小流氓丶 | 来源:发表于2016-11-01 11:09 被阅读0次

    // 自定义打印

    #ifdef DEBUG

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

    #else

    #define NSSLog(...)

    #endif

    相关文章

      网友评论

          本文标题:Xcode 8 一些调整

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