APP发布 , 去掉NSLog

224 阅读1分钟

// // Close all NSLog() // #ifdef OPTIMIZE

define NSLog(...) {}

#else

define NSLog(...) NSLog(VA_ARGS)

#endif