美文网首页
NSLog打印不全解决办法

NSLog打印不全解决办法

作者: 加盐白咖啡 | 来源:发表于2019-10-06 19:36 被阅读0次
    #ifdef DEBUG
    #define NSLogEx(format, ...) printf("%f class: <%p %s:(%d) > method: %s \n%s\n", self, [[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, __PRETTY_FUNCTION__, [[NSString stringWithFormat:(format), ##__VA_ARGS__] UTF8String] )
    #define NSLog(...) printf("%f %s\n",[[NSDate date]timeIntervalSince1970],[[NSString stringWithFormat:__VA_ARGS__]UTF8String]);
    #else
    #define NSLogEx(format, ...)
    #define NSLog(...)
    #endif
    
    

    相关文章

      网友评论

          本文标题:NSLog打印不全解决办法

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