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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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)