某些情况下,使用NSLog输出长文本,会出现文本不全的情况,后面部分像被截掉了一样。
可以使用一下方法来输出,确保输出完整。
#ifdef DEBUG
#define LYLSLog(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 LYLSLog(format, ...)
#endif
网友评论