美文网首页
Xcode8-NSLog打印JSON的时候,控制台显示不完整

Xcode8-NSLog打印JSON的时候,控制台显示不完整

作者: 奋斗的蜗牛 | 来源:发表于2017-01-09 20:40 被阅读76次

通过宏定义用printf()函数来替换原来的NSLog:

#ifdef DEBUG
#define SLog(format, ...) printf("class: <%p %s:(%d) > method: %s \n%s\n", self, [[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, __PRETTY_FUNCTION__, [[NSString stringWithFormat:(format), ##__VA_ARGS__] UTF8String] )
#else
#define SLog(format, ...)
#endif 

相关文章

网友评论

      本文标题:Xcode8-NSLog打印JSON的时候,控制台显示不完整

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