Native_Mobile_Arch_Dev
Native_Mobile_Arch_Dev

Reputation: 777

How do obtain a list of classes in xcode

I am developing an iOS app and would like to obtain a list instance methods for classes in my xcode project. Does anyone know how to do this?

Thanks

Upvotes: 2

Views: 1587

Answers (2)

Peter M
Peter M

Reputation: 7493

If you want this for documentation purposes (rather than just while using XCode) you can run various programs over your code to extract the details and generate documentation in various formats.

One possibility is to use Doxygen (which is fairly intense to come up to speed on, but is very good at what it does). A mini tutorial on this is shown in Documenting objective-c with Doxygen part i, Documenting objective-c with Doxygen part ii and Using the doxygen helper in xcode 4

This tutorial also mentions the Apple product HeaderDoc, and another 3rd party product (apparently no longer supported) AutoDoc, but the author prefers Doxygen (as do I)

Upvotes: 3

Georg Fritzsche
Georg Fritzsche

Reputation: 98984

In Xcode 3: ViewSmartgroupsSymbols.
For Xcode 4 see Browse to Project Symbols.

Upvotes: 1

Related Questions