debug环境下打印

来源:互联网 发布:男士内裤品牌 知乎 编辑:程序博客网 时间:2024/06/05 15:40

#ifdef DEBUG
#    define NSLog(...) NSLog(__VA_ARGS__)
#else
#    define NSLog(...) {}

#endif




0 0