=====oc=======
#ifdef DEBUG
NSLog(@"Debug 模式的代码...");
#else
NSLog(@"Release 模式的代码...");
#endif
=====swift========
swift项目默认是不支持判断的,没有判断标识,需要配置-DDEBUG,与-DRELEASE
#if DEBUG
//Debug 模式的代码.
#else
//Release模式的代码
#endif
//参考:http://www.cnblogs.com/Bob-wei/p/5237761.html