为什么星号不能在Xcode快速帮助标记中使用?

时间:2018-09-09 07:44:44

标签: xcode formatting documentation markup

Markup Formatting Reference所述,您可以使用*+-字符作为标记关键字的前缀。例如,看看Parameter

enter image description here

现在,当我尝试使用*时,标记不起作用:

/**
 * Parameter piece: A piece to validate.
 * Parameter matchBlock: Called only if necessary.
 */
init(piece: MSPiece?, matchBlock: MatchBlock) { ... }

上面的代码导致: enter image description here

但是,如果我们使用+-代替*

/**
 + Parameter piece: A piece to validate.
 - Parameter matchBlock: Called only if necessary.
 */
init(piece: MSPiece?, matchBlock: MatchBlock) { ... }

文档将是正确的:   enter image description here

*为什么不起作用?使用星号实际上很酷,因为/** */的评论统计信息以星号结尾,而且确实很整洁。

1 个答案:

答案 0 :(得分:0)

这是一个错误,已在Xcode 10.0中修复。