是否有 Xcode 快捷方式可以在 switch 中键入所有枚举案例?
Is there a Xcode shortcut to type all the enum cases in a switch?
假设我有这个枚举:
enum Test {
case test1
case test2
case test3
}
我想知道是否有快捷方式或带有 Xcode 的命令可以快速编写此内容:
switch test {
case .test1:
/// ...
case .test2:
/// ...
case .test3:
/// ...
}
感谢您的帮助
此功能在 Xcode 12.5
中无法通过键入时的自动完成功能使用。但是,您可以使用建议 - “添加缺失案例”来实现此目的。
这可以在您输入当前 Xcode 13 beta
时通过自动完成获得。 This tweet 展示了此功能的实用 GIF -
假设我有这个枚举:
enum Test {
case test1
case test2
case test3
}
我想知道是否有快捷方式或带有 Xcode 的命令可以快速编写此内容:
switch test {
case .test1:
/// ...
case .test2:
/// ...
case .test3:
/// ...
}
感谢您的帮助
此功能在 Xcode 12.5
中无法通过键入时的自动完成功能使用。但是,您可以使用建议 - “添加缺失案例”来实现此目的。
这可以在您输入当前 Xcode 13 beta
时通过自动完成获得。 This tweet 展示了此功能的实用 GIF -