在項(xiàng)目中添加全局方法(可以直接創(chuàng)建一個(gè)swift文件,把方法拷貝就好了)
func printX<T>(_ message: T,
file: String = #file,
method: String = #function,
line: Int = #line) {
#if DEBUGLOG
print("\((file as NSString).lastPathComponent)[\(line)], \(method): \(message)")
#endif
}
其中 ** DEBUGLOG** 是一個(gè)標(biāo)示椰苟,你要是喜歡也可以命名為 XYZ
在圖中所示
當(dāng)然,如果你的標(biāo)示是 XYZ, 那就輸入:** -D XYZ**
代碼:
控制臺(tái)輸出: