美文网首页
NSLog不打印时间

NSLog不打印时间

作者: 吴文辉99 | 来源:发表于2017-04-25 14:18 被阅读0次

```

#ifdef DEBUG

#define NSLog(FORMAT, ...) fprintf(stderr,"%s\n",[[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);

#else

#define NSLog(...)

#endif

```

相关文章

网友评论

      本文标题:NSLog不打印时间

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