iOS开发:Debug与Release版本NSLog屏蔽方法

发布IosAPP时去除NSLog打印
第一步:在****-Prefix.pch文件中添加如下代码
 #ifdef __OPTIMIZE__
 #define NSLog(...) 
 #endif

第二步:
Edit Scheme
> Run xxx(程序名) > Destination 改成你要发布的iOS Device 或 模拟器 >info 选项卡 > build configuration > Release 选项

转自:

http://blog.csdn.net/kingkong1024/article/details/8231291

http://www.cnblogs.com/songuangzhi/archive/2012/08/10/2632209.html

你可能感兴趣的:(debug)