Apa*_*pan 20 documentation code-generation objective-c appcode
是否有任何方法AppCode 3.0可以生成文档注释IntelliJ?
例如,IntelliJ我可以输入一个方法:
public int method(float number){
// magic
}
Run Code Online (Sandbox Code Playgroud)
当它高于它时,我将输入:/**,IDE将生成如下代码:
/**
*
* @param number
* @return
*/
public int method(float number){
// magic
}
Run Code Online (Sandbox Code Playgroud)
在AppCode 3.0做了类似的技巧后,我只得到这样的东西:
/**
*
*/
- (int)method:(float)number;
Run Code Online (Sandbox Code Playgroud)
我已经检查过Preferences/Smart Keys/Insert documentation comment stub并且已经过检查.