headerdoc2html コマンドでドキュメントを生成してみました。しかし、headerdoc は toc.html しか生成しません。プロトコルの index.html はありません。何か問題でも?
以下のヘッダーファイルとコマンドを使用しました。
/*!
@header Dummy.h
hoge
*/
/*!
@class Foo
asdf
*/
@interface Foo : NSObject
/*!
@abstract xxx
*/
- (void)xxx;
@end
/*!
@protocol BarDelegate
*/
@protocol BarDelegate
/*!
@abstract Sent after something
*/
- (void)didSomething:(Foo *)foo;
@end
--
$ headerdoc2html *.h -o doc
その結果、
$ find doc
doc
doc/Dummy_h
doc/Dummy_h/Classes
doc/Dummy_h/Classes/Foo
doc/Dummy_h/Classes/Foo/index.html
doc/Dummy_h/Classes/Foo/toc.html
doc/Dummy_h/index.html
doc/Dummy_h/Protocols
doc/Dummy_h/Protocols/BarDelegate
doc/Dummy_h/Protocols/BarDelegate/toc.html
doc/Dummy_h/toc.html