tomaz / appledoc

Objective-c code Apple style documentation set generator.
http://gentlebytes.com
4.19k stars 644 forks source link

links in methods #639

Open schriftgestalt opened 5 years ago

schriftgestalt commented 5 years ago

I wonder if it is possible that custom classes could link to its definitions inside of the method or property definitions?

example:

/** a list of objects */
@property NSArray<MyObject*>* listOfObjects;

MyObject should be a link to the classes definition.

In Apples current docs, this works. NSColor and NSColorSystemEffect are links to the corresponding pages.

- (NSColor *)colorWithSystemEffect:(NSColorSystemEffect)systemEffect;
tomaz commented 5 years ago

There was some talk of this in the past, but don't remember if it was implemented out of my head. It's not overly complicated from technical point of view. It can take fair amount of time though.