美文网首页
判断代码运行在DEBUG还是RELEASE模式

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

作者: devdawei | 来源:发表于2016-12-13 12:25 被阅读0次
首先确定下项目的 Build Settings 是否已经设置过宏定义 DEBUG
点击 Build Settings ,然后在搜索框里输入 macros
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模式

      本文链接:https://www.haomeiwen.com/subject/wpavmttx.html