NSLog

作者: 陈_振 | 来源:发表于2018-06-25 16:13 被阅读0次
    #ifdef 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)
     #else
        #define NSLog(format, ...) do{} while(0)
    #endif
    

    相关文章

      网友评论

          本文标题:NSLog

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