Objective-C: Generating Documentation
5 answers
As Jon Skeet said the most popular method is Doxygen, and from what I can tell so far, comment formatting is mostly AppleDoc compatible.
Also don't forget to check out the comment generator plugin that Fred McCann wrote: http://www.duckrowing.com/2011/05/14/using-the-doxygen-helper-in-xcode-4/
He also has a great practice post for writing Doxygen comments: http://www.duckrowing.com/2010/03/18/documenting-objective-c-with-doxygen-part-i/
(It would be better as a comment on John, but alas, I have no points.)
+1
a source to share
As said, my fav template :)
///////////////////////////////////////////////////////////////////////
/// \brief setX
/// \param x offset of the image.
/// \return a new image as an QImage.
/////////////////////////////////////////////////////////////////////////
QImage setX(int x);
0
a source to share