作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个枚举和一个关联的枚举。我需要一次从枚举 A 和枚举 B 中获取所有可能的情况。
enum A {
case a
case b
case c
}
enum B {
case d
case e
case f
}
enum C {
case first(A)
case second(B)
}
extension C: CaseItratable {
//How to implement?
}
最佳答案
1. 符合 enum A
和 enum B
至CaseIterable
协议(protocol)
enum A: CaseIterable {
case a, b, c
}
enum B: CaseIterable {
case d, e, f
}
enum A
的所有案例和
enum B
使用
allCases
.
enum C {
case first(A)
case second(B)
var casesOfA: [A] {
return A.allCases //here...
}
var casesOfB: [B] {
return B.allCases //here...
}
}
关于ios - 关联的枚举类型实现 CaseItratable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58499440/
我有两个枚举和一个关联的枚举。我需要一次从枚举 A 和枚举 B 中获取所有可能的情况。 enum A { case a case b case c } enum B {
我是一名优秀的程序员,十分优秀!