Since XCode 5 now supports reading header comments directly from header files, it has become increasingly interesting, to document functionality in a consistent way.
I therefore try to find a tool that can automatically insert header doc comments in Objective C header files, but can't seem to find one?
Basically I would like a took that could write something like:
/*!
<desc method.>
@param parmA
<desc of parmA>
@param parmB
<desc of parmB>
@result
<desc of result>
*/
- (CO2 *)doSomething:(typeName)parmA withSomething:(typeName)parmB;