markdown使用
符号##标题
列表的显示只需要在文字前加上 - 或 * 后面需要跟上空格即可变为无序列表,有序列表
格式 - 空格 文字
- 今天的心情
- 你觉得呢
- 睡觉
引用>
今天我说啊我排位连胜一页还能每次mvp。 --有名气的我
链接
简书主页
图片
import Foundation
func method() {
//...
print("文件名:Test.swift, 方法名:method,这是一条输出")
//...
}
method()
func printLog<T>(_ message: T,
file: String = #file,
method: String = #function,
line: Int = #line)
{
print("\((file as NSString).lastPathComponent)[\(line)], \(method): \(message)")
}
// Test.swift
func method1() {
//...
printLog("这是一条输出")
//...
}
method1()
func printLogDebug<T>(_ message: T,
file: String = #file,
method: String = #function,
line: Int = #line)
{
#if DEBUG
print("\((file as NSString).lastPathComponent)[\(line)], \(method): \(message)")
#endif
}
func method2() {
//...
printLogDebug("这又是一条输出")
//...
}
method2()
// No Output