I'd like to add a clickable link to my documentation that references another method in my class. I've tried @link but it puts it into a seperate block view which I don't like. I'd prefer to just have it look like blue text inline with my description. I've seen comments that say to use ` but it doesn't seem to work. For example..
/**
My function does this and is called by `anotherFunction:`.
*/
So then in the quick help side bar I would see some blue text for anotherFunction: that I could click that would take me to the function in my class with that documentation.
Is this possible at all?
I've also tried @seealso but it does not seem to come up at all in the quickhelp. for example,
@seealso anotherFunction:
Doesn't cause anything to show up in the quick help.
I'm doing this all in Objective C if that is a factor at all.