1

这是我的代码

/**
 *    In touchesBegan: it is considered if it was succesfull click. Automatically changes on/off images
 */
@interface WOC_OnOffImageButton : SKSpriteNode

当我WOC_OnOffImageButton在弹出窗口中进行 alt-click 时,Description我将In touchesBegan: it is considered if it was succesfull click. Automatically changes on/off images全部放在一行中。

我想在 之间换行... click. Automatically...,因为这样更容易阅读。

问题
是否可行,如果可以,该怎么做?

4

1 回答 1

3

在此处输入图像描述

是的,AppleDoc 支持多行注释。以下是您如何使用它们:

 /**
 *    In touchesBegan: it is considered if it was succesfull click.
 *
 *    Automatically changes on/off images
 */

关键是在新行上加上星号。您可能需要保存 ( Cmd+S) 和/或清理 ( Cmd+Shift+K) 项目才能在弹出窗口中查看结果。

于 2014-07-27T08:51:05.670 回答