如果我在枚举中设置了我的案例,我可以在switch语句中调用多个这样的案例吗?又名case .a,.b:return true
enum myLetters { case a case b case c var myCondition: Bool { switch self { case .a,.b: return true case .c: return false default: return false } } }
解决方法
是的,请看一下Swift
documentation on switch声明.
为了达到你想要的效果,你需要检查myLetters的当前值:
var myCondition: Bool { switch self { case .a,.b: return true case .c: return false } }