\ref 命令中的引用方法
如何在 doxygen 中的 \ref 命令中引用 Objective-C 方法?我尝试了这些,但它们不起作用:
@interface Class
/// \ref Class::method
/// \ref Class::method:description
/// \ref Class#method
/// \ref Class#method:description
- (void) method:description;
谢谢。
how can I refer to a objective-c method in a \ref command in doxygen? I tried these but they don't work:
@interface Class
/// \ref Class::method
/// \ref Class::method:description
/// \ref Class#method
/// \ref Class#method:description
- (void) method:description;
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用\sa 或\see。
\ref 用于引用页面,而不是引用的符号。
You should use \sa or \see.
\ref is used to reference pages, not referenced symbols.