1

これは私のコードです

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

そしてWOC_OnOffImageButton、ポップアップ内でalt-clickすると、すべてが1行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 に答える