为 XCode 7.2 中的 Swift 代码自动生成文档模板
Auto-generate documentation templates for Swift code in XCode 7.2
是否可以为 XCode 中的给定方法自动生成文档模板?
文档模板示例:
///
/// - parameter x:
/// - parameter y:
/// - parameter w:
/// - parameter d:
/// - returns: T
对应此方法:
func subface(x: CGFloat, y: CGFloat, w: CGFloat, d: Int) -> UIImage{
// ...
}
添加VVDocumenter-Xcode via Alcatraz Package Manager.
this is an example after writing ///
above the function definition.
/**
<#Description#>
- parameter x: <#x description#>
- parameter y: <#y description#>
- parameter w: <#w description#>
- parameter d: <#d description#>
- returns: <#return value description#>
*/
func subface(x: CGFloat, y: CGFloat, w: CGFloat, d: Int) -> UIImage{
/*...*/
}
The <# .. >
marked sections are editable with just tapping over them.
你只需要一个快捷方式:command + option + /
是否可以为 XCode 中的给定方法自动生成文档模板?
文档模板示例:
///
/// - parameter x:
/// - parameter y:
/// - parameter w:
/// - parameter d:
/// - returns: T
对应此方法:
func subface(x: CGFloat, y: CGFloat, w: CGFloat, d: Int) -> UIImage{
// ...
}
添加VVDocumenter-Xcode via Alcatraz Package Manager.
this is an example after writing
///
above the function definition.
/**
<#Description#>
- parameter x: <#x description#>
- parameter y: <#y description#>
- parameter w: <#w description#>
- parameter d: <#d description#>
- returns: <#return value description#>
*/
func subface(x: CGFloat, y: CGFloat, w: CGFloat, d: Int) -> UIImage{
/*...*/
}
The
<# .. >
marked sections are editable with just tapping over them.
你只需要一个快捷方式:command + option + /