I tried following the Doxygen documentation to add links to ivars and methods but none of them are interpreted by Doxygen.
This is what I'm doing.
@interface MyClass: NSObject
{
int x;
}
@end
Somewhere else:
/**
Trying to link to x.
MyClass::x
*/
SOLUTION: No link is created to something that is not documented. Just added documentation to my ivar and the link was created.