这是我的密码
/**
* In touchesBegan: it is considered if it was succesfull click. Automatically changes on/off images
*/
@interface WOC_OnOffImageButton : SKSpriteNode当我在弹出的WOC_OnOffImageButton中点击Description时,我得到的都是In touchesBegan: it is considered if it was succesfull click. Automatically changes on/off images。
我希望在... click. Automatically...之间有新的行,因为它更容易阅读。
问题
这是可行的吗?如果是的话,怎么做呢?
发布于 2014-07-27 08:51:05

是的,AppleDoc支持多行注释。下面是你如何使用它们的方法:
/**
* In touchesBegan: it is considered if it was succesfull click.
*
* Automatically changes on/off images
*/关键是在新的行上加上星号。您可能需要保存(Cmd+S)和/或清理(Cmd+Shift+K)您的项目才能在弹出窗口中看到结果。
https://stackoverflow.com/questions/24979166
复制相似问题