1

在我的 iOS 项目中,我在一些类的文档中添加了截图图像。
该文档是使用appledoc生成的。

基本上,对于 class TheViewController,这看起来像这样:

/**
 * A view controller: awesome and helpful class description.
 *
 * **iPhone Screenshot:**
 * ![](../docs/documentation_data/ViewControllersScreenshotsGallery/screenshots/TheViewController_iPhone.png)
 *
 * **iPad Screenshot:**
 * ![](../docs/documentation_data/ViewControllersScreenshotsGallery/screenshots/TheViewController_iPad.png)
 */


有什么办法可以干燥这个吗?
一个宏,预处理(通过preprocess-headerdoc?),动态占位符,脚本,提供给appledoc的选项?

理想情况下,我只想拥有这个:

/**
 * A view controller: awesome and helpful class description.
 *
 * SCREENSHOTS_FOR_IPAD_AND_IPHONE
 */




如果我什至不必添加 line SCREENSHOTS_FOR_IPAD_AND_IPHONE,则奖励积分,并且仅在满足某些条件时才添加内容(即,如果在预期的位置找到图像)。

4

1 回答 1

0

目前没有这样的功能。

于 2013-03-23T16:14:31.080 回答