
假设我有一个类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:总结
以上是内存溢出为你收集整理的objective-c – 使用Doxygen使用@see命令引用特定的类方法全部内容,希望文章能够帮你解决objective-c – 使用Doxygen使用@see命令引用特定的类方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)