在我的iOS项目中,我将截图图片添加到某些类的文档中 文档是使用appledoc生成的。
基本上,对于班级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
*/
如果我甚至不必添加行SCREENSHOTS_FOR_IPAD_AND_IPHONE
,则仅在满足某些条件时添加内容(即,如果在预期的位置找到图像),则添加内容。
答案 0 :(得分:0)
目前还没有这样的功能。