What’s new in Xcode 7.給出了一個提示顯示爲豐富的快速幫助文本嵌入 圖像和鏈接
降價的意見。
和Xcode的7測試版發行說明狀態:
斯威夫特文檔註釋使用基於降價 格式的語法,具有豐富的操場評論對準他們。 (20180161)
後跟一個簡短描述。
舉個例子,
/**
Repeats a string `times` times.
:param: str The string to repeat.
:param: times The number of times to repeat `str`.
:returns: A new string with `str` repeated `times` times.
*/
func repeatString(str: String, times: Int) -> String {
return join("", Array(count: times, repeatedValue: str))
}
從http://nshipster.com/swift-documentation/現在將被寫成
/// Repeats a string `times` times.
/// - Parameters:
/// - str: The string to repeat.
/// - times: The number of times to repeat `str`.
/// - returns: A new string with `str` repeated `times` times.
func repeatString(str: String, times: Int) -> String {
return Repeat(count: times, repeatedValue: str).joinWithSeparator("")
}
或用多行註釋:
/**
Repeats a string `times` times.
- Parameter str: The string to repeat.
- Parameter times: The number of times to repeat `str`.
- returns: A new string with `str` repeated `times` times.
*/
func repeatString(str: String, times: Int) -> String {
return Repeat(count: times, repeatedValue: str).joinWithSeparator("")
}
有關降價的更多信息,請參閱
和許多
應用於內聯文檔的意見爲好。
例如,您可以添加
**Important:** `times` must not be negative.
其中 「重要」 呈現強。
塊參數的參數怎麼樣? –