objective-c - 使用 Doxygen 使用 @see 命令引用特定的类方法

标签 objective-c doxygen documentation-generation

我无法使用 doxygen @see 命令引用特定的类方法。

假设我有一个类服务器,其方法如下所示

@interface Server : NSObject

- (void) start:(NSInteger) mask;

@end

假设我有另一个类有一个服务器对象。

@interface RandomNumberGeneration

/// How can I reference the method start from 
/// class server using the command @see
/// @see ????
+ (NSInteger) generate;

@end

那么,有没有办法引用类Server的start方法呢?

最佳答案

复制自here

@see text | URL | classname | classname#methodname Use this to tag to refer the reader to some other source of related information.

所以我猜应该是:

/// @see Server#start:

关于objective-c - 使用 Doxygen 使用 @see 命令引用特定的类方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9950215/

相关文章:

java - 为 RestEasy 的 Web 服务参数添加描述?

iphone - 在 iPhone 上打开 PDF 文档

php - PHP 文档中的 Doxygen 和 "self"关键字

python - 使用不同的配置源作为 waf 的 doxygen 功能的输入

doxygen - 为 doxygen html 文档页面创建稳定的名称

javascript - 用户对 JSDuck 文档的评论?

c++ - 功能组的文档注释

ios - 视频流演示中的错误

iphone - 关于 NSPredicate 和 NSMutableArray 深拷贝

ios - 如何一次性定义许多结构元素?