headerdoc - Using @link with Xcode 6 -
i'm using headerdoc document code , link other methods in documentation. i'm not trying generate html (at least now) want appear in xcode's right panel. following documentation -applicationdidenterbackground: appears in xcode. want achieve blue links referencing other methods wrote myself:

the docs use @link, doesn't seem work:
here's tried:
/** * @abstract returns array copy of elements in heap in sorted order. * * @discussion original heap remains unchanged. getter uses heap sort takes o(n log n), * although copies heap first (in linear time). if losing elements on heap * acceptable should use @link -removeallobjectswitharray: @/link instead, faster. */ here's result:

as can see it's not rendering properly. read here @link broken, comment dates 2013. there fix? doing wrong?
edit: tried santa's suggestion, result:
/** * @abstract whether heap empty. * * @discussion empty heap contains no objects, in case property returns <code>yes</code>. * returns <code>no</code> otherwise, implies calls {@link count} * return zero. */ renders as:

Comments
Post a Comment