如何使用appledoc记录内联协议

时间:2013-09-25 13:35:25

标签: protocols appledoc

我已经定义了一个Objective-C @class,它在@interface之前的头文件中定义了一个@protocol内联。

我无法获得appledoc来生成协议的文档。是内联还是协议需要是一个单独的文件?

1 个答案:

答案 0 :(得分:0)

协议不需要在单独的头文件中定义。 我自己在这样的结构中使用它(相同的头文件):

MyClass.h

/** The `MyClassDelegate` will notify the controller about anything that happens inside `MyClass`
 */
@protocol MyClassDelegate <NSObject>
//Protocol definition
@end


/** This class has some cool methods and properties
 */
@interface MyClass : NSObject
//Class definition
@end