美文网首页
ios-调试程序打印详细信息 文件名 函数名 行号

ios-调试程序打印详细信息 文件名 函数名 行号

作者: 今年27 | 来源:发表于2018-05-23 14:40 被阅读16次

    #ifdef DEBUG

    # define DebugLog(fmt, ...) NSLog((@"\n[文件名:%s]\n""[函数名:%s]\n""[行号:%d] \n" fmt), __FILE__, __FUNCTION__, __LINE__, ##__VA_ARGS__);

    #else

    # define DebugLog(...);

    #endif

    相关文章

      网友评论

          本文标题:ios-调试程序打印详细信息 文件名 函数名 行号

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