Add a link to another method in the @see headerdoc section

I am trying to add a reference to the UIKit method in my own documentation. According to this documentation , I have to add a tag @seewith a link //apple_ref/.

Here is my documentation:

/**
 * Creates and add constraints to the receiver
 *
 * @return The constraints that were added.
 *
 * @see //apple_ref/occ/clm/NSLayoutConstraint/constraintsWithVisualFormat:options:metrics:views:
 */

And here is the result: screenshot

Any idea how to do this?

EDIT . The same question applies @seein the same file.

+4
source share

All Articles