Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I force XCode to show my own documentation for custom classes, methods, etc.? I'm used to Java and Eclipse, which shows me documentation for my classes as shown here:

Eclipse showing Javadocs documentation

How can I achieve the same in XCode? Are there special comments that XCode can recognize and display?

XCode showing generic documentation for NSObject

share|improve this question
2  
Great question! I don't actually know; I typically just command-click the class (or function, or variable, or...) name to jump to its definition. Not ideal, but you can jump right back to where you were with command-control-left arrow, so it's nearly as quick. – Ryan Ballantyne Aug 5 '11 at 15:11
@Ryan: thanks for suggestion. Not perfect, but it's reasonable alternative. – Peter Štibraný Aug 6 '11 at 11:01

2 Answers

up vote 5 down vote accepted

Appledoc is the best option for generating xcode documentation at the moment. Doxygen is great, but it does not generate docsets that work very well for the popups you're talking about. Appledoc isn't perfect, but we moved over to it and have been really happy with the results.

enter image description here

share|improve this answer

To get Xcode to show documentation for your classes, you must create a documentation set for your classes using a tool like Doxygen or HeaderDoc. After creating the documentation set, you must install it using Xcode's documentation preferences. Apple has an article on using Doxygen, but it covers Xcode 3, not 4.

Using Doxygen to Create Xcode Documentation Sets

share|improve this answer
I still hope this is not the only solution. After all, XCode already parses my sources, maybe there is some simpler way. Thanks for your answer. – Peter Štibraný Aug 6 '11 at 8:19
Xcode's Quick Help uses your installed documentation sets to display its contents. Unless you create and install a documentation set for your classes, all Quick Help displays is a link to the header file where you declared the class, method, or data member. Look at Xcode's symbol navigator. It shows your classes' methods and members. Choose View > Navigators > Show Symbol Navigator to open the symbol navigator. – Mark Szymczyk Aug 7 '11 at 18:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.