I have created my iPhone App and i must do a document like javaDoc in java but i don’t find anything with google.
I think that the comments have similar syntax but i’m not sure. (/* */)
Can you help me?
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.
You can use
//for single line comments, or/** */for multi-line comments.You’d also be wise to make use of
#pragma markto further organize your code. See here: http://cocoasamurai.blogspot.com/2006/09/tip-pragma-mark-organizing-your-source.htmlThere are also tools like Doxygen: hhttp://www.doxygen.nl