iOS之控制台打印不完全的解决方法

来源:互联网 发布:netpas云墙 mac下载 编辑:程序博客网 时间:2024/06/05 00:09


#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


吧NSLOg换成SLOG

原创粉丝点击