微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

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

假设我有一个类Server,其方法如下所示

@interface Server : NSObject

- (void) start:(NSInteger) mask;

@end

假设我有一个具有Server对象的类.

@interface RandomNumberGeneration

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

@end

那么,有没有办法引用类Server的方法启动?

解决方法

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:

原文地址:https://www.jb51.cc/c/111446.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐