我想在Swift中的同一个文件中创建一个链接引用,就像在JavaDoc中一样,但我似乎无法找到描述如何执行此操作的文档。您只能引用外部URL。我希望能够做到这样的事情:
class myClass : UIView {
/// The label that displays the scale of this view
/// - seealso: [showScaleView](showScaleView())
private lazy var scaleView: UIView = UIView()
/// Shows the scale view
/// - seealso: [scaleView](scaleView)
private func showScaleView() {
...
}
}
答案 0 :(得分:1)
自2018年1月以来Xcode中的此已知问题...:(
这里是雷达:https://github.com/lionheart/openradar-mirror/issues/19263