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

通过宏定义用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的时候,控制台显示不完整)