发布网友 发布时间:2022-04-26 02:11
我来回答
共1个回答
热心网友 时间:2022-06-19 22:45
一般Apple已经为我们设置好了 DEBUG 的宏定义,所以,我们只要让 NSLog 在 DEBUG 模式下失效就好了,这样能让我们的程序运行起来更加稳定,同时我们也可以继续使用正规的 NSLog。//put this in prefix.pch#ifndef DEBUG#undef NSLog#define NSLog(args, ...)#endif