美文网首页
无标题文章

无标题文章

作者: heiguoliangle | 来源:发表于2016-07-31 11:21 被阅读12次

    最新项目中上线了,但是打印日志的去掉啊,本来想偷个懒网上档点宏文件就OK了,结果发现好多都不能使用啊,果断自己写一份!

    #if DEBUG

    #define NSLog(format, ...) do {                                            \

    fprintf(stderr, "<%s : %d> %s\n",                                          \

    [[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String],  \

    __LINE__, __func__);                                                        \

    (NSLog)((format), ##__VA_ARGS__);                                          \

    fprintf(stderr, "-------\n");                                              \

    } while (0)

    #define NSLogRect(rect) NSLog(@"%s x:%.4f, y:%.4f, w:%.4f, h:%.4f", #rect, rect.origin.x, rect.origin.y, rect.size.width, rect.size.height)

    #define NSLogSize(size) NSLog(@"%s w:%.4f, h:%.4f", #size, size.width, size.height)

    #define NSLogPoint(point) NSLog(@"%s x:%.4f, y:%.4f", #point, point.x, point.y)

    #else

    #define NSLog(FORMAT, ...) nil

    #define NSLogRect(rect) nil

    #define NSLogSize(size) nil

    #define NSLogPoint(point) nil

    #endif

    相关文章

      网友评论

          本文标题:无标题文章

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