Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generate Apple Docs for XCODE project

I am trying to generate apple docs for one of my projects. I am using the following commands to generate the docs...

headerdoc2html -o OutPutDirectory InputDirectory

I am getting the following message...

Processing /Users/Ankit/Documents/Projects/pos/trunk/TestProject/TestProject/Test.h
    Skipping. No HeaderDoc comments found.
No default encoding.  Guessing.  If date formats are wrong, try
specifying an appropriate value in the LANG environment variable.

Any help is appreciated.

like image 432
Ankit Srivastava Avatar asked Mar 23 '23 21:03

Ankit Srivastava


1 Answers

I had same issue. I fixed it by changing all

/// Comments

And

/**
 * Comments
 */ 

Comments to

/*!
 * Comments
 */

And everything worked fine for me.

like image 138
Midhun MP Avatar answered Mar 25 '23 10:03

Midhun MP