在pch文件里编写如下代码
//消除文件中的nslog函数
#ifdef __OPTIMIZE__
#define NSLog(...)NSLog(VA_ARGS__)
#else
#define NSLog(...){}
#endif
在pch文件里编写如下代码
//消除文件中的nslog函数
#ifdef __OPTIMIZE__
#define NSLog(...)NSLog(VA_ARGS__)
#else
#define NSLog(...){}
#endif
本文标题:iOS 消除项目中的nslog函数
本文链接:https://www.haomeiwen.com/subject/nwnasttx.html
网友评论