2010-12-15 15 views
0

我成功地为使用Doxygen的自定义Cocoa Touch静态库项目创建了一个docset。我可以在我的库项目的范围内放置其他类和成员的链接,但我找不到一种方法来制作(可点击)引用其他框架,特别是UIKit或NSFoundation。如何使用Doxygen交叉引用其他docset

这是我的文档注释的例子:

/** 
If #shouldLoadDataFromTableEntriesJSONFile returns YES, this method 
will be asked to provide the full path to the appropriate JSON file. 

@return an absolute path to a JSON file. 

@see MyOtherClass#aMethodThere 
@see NSBundle#mainBundle 
*/ 

Doxygen的正确创建了同一个类中,并在aMethodThere一个MyOtherClass超链接的shouldLoadDataFromTableEntriesJSONFile,而不是NSBundle#mainBundle。我知道这可能会更困难,因为它位于其他地方,但我可以设置它来告诉它如何做到这一点? 任何特殊的标志或变量定义需要我失踪或仅仅是如何在文档注释中形成它的问题?

回答