views:

420

answers:

2

Does Objective C have a documentation framework similar to JavaDoc where documentation can be generated from the source code?

+2  A: 

Doxygen is quite popular among Obj-C developers.

Ole Begemann
+4  A: 

Doxygen! You can use it for many languages, including Objective-c

davidrobles
Definitely the best option. If you'd like to go even further, I've written a script that will convert Doxygen's output to look more like Apple's API docs: http://github.com/mattball/doxyclean
Matt Ball