AppCode 3.0
中有什么方法可以像IntelliJ
中那样生成文档注释吗?
例如,在IntelliJ
中,我可以输入一个方法:
public int method(float number){
// magic
}
在其上方时,我将输入:
/**
,IDE将生成如下代码:/**
*
* @param number
* @return
*/
public int method(float number){
// magic
}
在做类似的技巧之后,在
AppCode 3.0
中,我只会得到以下内容:/**
*
*/
- (int)method:(float)number;
我检查了
Preferences/Smart Keys/Insert documentation comment stub
并检查了它。 最佳答案
该功能在AppCode 3.0中不可用,但已在2016.2版本中添加,因此升级将解决您的问题。从the release notes:
关于objective-c - 像在IntelliJ中一样,在AppCode 3.0中生成文档注释,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23858982/