views:

53

answers:

2

Could anyone share the the ways to do the documentation in objective C? Is there any standard way like it is in java?

+1  A: 

I think you're looking for Doxygen.

Jacob Relkin
+2  A: 

I don't know what IDE you're using but Doxygen lets you generate documentation from comments in Objective-C (as well as C, C++, Java, and some others).

If you're using Xcode (just assuming, since you're using Objective-C), there does seem to be some level of integration (not tested by me, just found on Google): http://developer.apple.com/tools/creatingdocsetswithdoxygen.html

FrustratedWithFormsDesigner