自定义NSLog

xiaoxiao2021-02-28  94

/** 如果是调试阶段 ZYLog == NSLog */ #ifdef DEBUG #define ZYLog(…) NSLog(__VA_ARGS__) /** 如果是发布程序 ZYLog替换为空 */ #else #define ZYLog(…) #endif
转载请注明原文地址: https://www.6miu.com/read-46967.html

最新回复(0)