iOS 封装自定义打印方法

Posted by Calvin on 2017-04-08

封装自定义打印宏并在预编译文件中引用

#ifdef DEBUG
#define MyLog(FORMAT, ...) fprintf(stderr,"%s: 第%d行\t%s\n",[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);
#else
#define MyLog(...)
#endif

Debug模式下打印出类名、行数、打印信息

如图所示:
20170408149166358578272.jpg