自定义日志 发表于 2022-06-05 | 分类于 iOS 1234567#ifdef DEBUG#define YZLog(...) \NSLog(@"\n%@第%d行:\n%@",[[NSString stringWithFormat:@"%s",__FILE__] lastPathComponent], __LINE__, [NSString stringWithFormat:__VA_ARGS__]);#else#define YZLog(...)#define NSLog(...)#endif 最好放到PrefixHeader.pch里面