I want to make a link link in the same file in Swift as in JavaDoc, but I can not find the documentation that describes how to do this. You can only link to external URLs. I want to be able to do something like this:
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() { ... } }
reference markup xcode swift
NoodleOfDeath
source share