在OC中我们习惯于在pch文件中定义一个宏打印,以便于程序的调试,但在swift中不存在pch文件,按之前的方式是不行了。swift中可以单独创建一个文件当做pch文件使用,然后将 宏转换成函数
// debug log
func kLog<T>(message:T,file:String = #file,funcName:String = #function,lineName:Int = #line){
#if DEBUG
let flieName = (file as NSString).lastPathComponent
let formter = DateFormatter()
formter.dateFormat = "yyyy-MM-dd HH:mm:ss"
let printDate = formter.string(from: Date())
print("\(printDate): \(flieName) \(funcName) 第\(lineName)行: \(message)")
#endif
}