Xcode 8 一些调整

2016-11-01  本文已影响0人  正经的小流氓丶

// 自定义打印

#ifdef DEBUG

#define NSSLog(FORMAT, ...) fprintf(stderr,"%s:%d\t%s\n",[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);

#else

#define NSSLog(...)

#endif

上一篇下一篇

猜你喜欢

热点阅读