xcode:如何自动创建方法文档

时间:2016-07-28 02:16:47

标签: swift xcode

我跟随this回答以swift方式记录我的课程。我的问题是:有没有办法在xcode中自动创建方法文档?我的意思是,就像你在php strom中输入/ ** +输入,或/// +输入visual studio一样。

1 个答案:

答案 0 :(得分:0)

你的意思是这样吗?

/// Returns the sum of four values
///
///
/// - Parameters:
///     - a: Value 1
///     - b: Value 2
///     - c: Value 3
///     - d: Value 4
func calculate(a: Double, b: Double, c: Double, d: Double) -> Double {
    return a + b + c + d
}

将返回: enter image description here