美文网首页
宏定义 NSLog debug 不打印设置

宏定义 NSLog debug 不打印设置

作者: 小风车tl | 来源:发表于2017-05-25 16:00 被阅读0次

    #ifdef DEBUG

    #define NSLog(...) NSLog(__VA_ARGS__)

    #define debugMethod() NSLog(@"%s", __func__)

    #else

    #define NSLog(...)

    #define debugMethod()

    #endif

    相关文章

      网友评论

          本文标题:宏定义 NSLog debug 不打印设置

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