iOS 工程去除NSLog

来源:互联网 发布:网络协议分析 pdf 编辑:程序博客网 时间:2024/06/05 17:36

自测 第一种好用,第二种有点问题


//1

#ifdef DEBUG

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

#else

#    define DLog(...)

#endif


//2

#ifndef __OPTIMIZE__

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

#else

#define NSLog(...) {}

#endif


0 0
原创粉丝点击