1

我记录了从声明它的文件之外的模型生成的 ManagedObject 类。由于这个类是自动生成的,我不想修改源代码,所以我在 .m 文件之外有文档。

我有这个自动取款机:

/*!
    \file AA.h 
    \class AA
    \extends ManagedObject
    Data model object generated from the model.

    \public
    \property NSString * hardwareId
    \brief Unique identifier of the device
*/

我获得了一个具有 AA 类的输出文件,它显示了继承,但没有显示任何关于属性或公共标签的内容。

不知道我做错了什么。

有任何想法吗?多谢

4

1 回答 1

1

我找到了答案。问题是我需要在每个属性名称的开头添加一个带有类名称的“命名空间”。

所以,我的最终文件是这样的:

AA.doc

/*! 
    \class AA
    This file contains the documentation of the data model object generated from the model.  
*/

/*! 
    \var NSString * AA::hardwareId
    \brief Unique identifier of the device
*/

我不需要指定文件和继承,因为 doxygen 自动从 .h 文件中获取它而不添加任何内容

于 2012-11-15T15:12:43.297 回答