判断代码运行在DEBUG还是RELEASE模式

首先确定下项目的 Build Settings 是否已经设置过宏定义 DEBUG
点击 Build Settings ,然后在搜索框里输入 macros
判断代码运行在DEBUG还是RELEASE模式_第1张图片
Build Settings
如果已经设置过,在 Preprocessor Macros 的 Debug 后面会有 DEBUG=1,如果没有,就手动设置下
接下来就可以判断是否为DEBUG模式了
#ifdef DEBUG
    // do sth.
#else
    // do sth.
#endif
一般Apple已经为我们设置好了 DEBUG 的宏定义,所以,我们只要让 NSLog 在 DEBUG 模式下失效就好了,这样能让我们的程序运行起来更加稳定,同时我们也可以继续使用正规的 NSLog
// put this in prefix.pch

#ifndef DEBUG
#undef NSLog
#define NSLog(args, ...)
#endif
自定义NSLog,输出所在的文件和行号
#ifdef DEBUG
#define DLog( s, ... ) NSLog( @"< %@:(%d) > %@", [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __LINE__, [NSString stringWithFormat:(s), ##__VA_ARGS__] )
#else
#define DLog( s, ... )
#endif

你可能感兴趣的:(判断代码运行在DEBUG还是RELEASE模式)