我正在向项目添加文档,但没有找到任何添加Block Comment的快捷方式。我已阅读Markup Formatting Reference guide但无法找到捷径。
我使用Option ⌥
+ Command ⌘
+ /
添加评论,但每行添加///
。
/// Initializer
///
/// - Parameters:
/// - userId: User Id
/// - userName: User Name
/// - applicationVersion: Applicarion Version
init(_ userId: String, withUserName userName: String, withApplicationVersion applicationVersion: String)
我想添加阻止评论/** ....*/
,如下所示:
/**
- parameters:
- cubes: The cubes available for allocation
- people: The people that require cubes
*/
答案 0 :(得分:2)
1.使用AppleScript创建Automator服务
2.确保选中“输出替换所选文本”
3.输入以下代码:
on run {input, parameters}
return "/*\n" & (input as string) & "*/"
end run
现在,您可以通过Xcode - “服务”菜单访问该服务,或在“系统偏好设置”下为其提供快捷方式。