I used to use doxygen for C ++, and I really liked the ability to document the built-in functions of a function and method using ///< or variations. On the contrary, I really dislike repeating the arguments in the comments when not using the inline style (since most of them only support doc systems).
Lately, I have configured doxygen with my Objective-C code and it seems that I could not get the documentation of the built-in arguments to work!
Incorrect documentation using @param seems to work, so I can only conclude that it does not support the Objective-C inline syntax. That would be a real shame.
Does anyone know something else? I would like this to work.
source share