iOS中debug调试输出日志

在.pch中写:
#ifdef DEBUG  // 调试阶段
#define CXSLog(...) NSLog(__VA_ARGS__)
#else // 发布阶段
#define CXSLog
(...)
#endif

posted on 2014-06-16 20:23  林源  阅读(402)  评论(0编辑  收藏  举报

导航