自定义log
你是否经常出现print一大堆不知道那个是哪个?那么通过自定义print就可以了!以下是实现:
在 BuildSettting 中 搜索 other swift flags 添加一个
-D DEBUG
func printLog<T>(
message: T,
file: String = __FILE__,
line: Int = __LINE__,
mthName: String = __FUNCTION__
) {
#if DEBUG
__LINE__
print("\((file as NSString).lastPathComponent)[\(line)], \(mthName): \(message)")
#endif
}