一、控制台自定义NSLog输出形式
#ifdef DEBUG
#define NSLog(format, ...) printf("\n[%s] %s [第%d行] %s\n", __TIME__, __FUNCTION__, __LINE__, [[NSString stringWithFormat:format, ## __VA_ARGS__] UTF8String]);
#else
#define NSLog(format, ...)
#endif
效果
屏幕快照 2018-08-09 下午4.57.47.png
文章持续更新中、希望对各位有所帮助、有问题可留言 大家共同学习.
网友评论