I'm trying to add a link to a UIKit method in my own documentation.
According to this documentation, I should add a @see
tag with an //apple_ref/
link.
Here's 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:
*/
Any idea how should I do it ?
EDIT: Same question goes for @see
in the same file.