iOS 解决Xcode NSLog打印不全的问题

#ifdef DEBUG

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

#else

#define NSLog(FORMAT, ...) nil

#endif

你可能感兴趣的:(iOS 解决Xcode NSLog打印不全的问题)