作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Value of protocol type 'Any' cannot conform to 'Equatable'; only struct/enum/class types can conform to protocols
struct BusinessDetail:Equatable {
static func == (lhs: BusinessDetail, rhs: BusinessDetail) -> Bool {
lhs.cellType == rhs.cellType && lhs.value == rhs.value
}
let cellType: BusinessDetailCellType
var value: Any?
}
enum BusinessDetailCellType:Int {
case x
case y
var textValue:String {
Switch self {
case x:
return "x"
case y:
return "y"
}
}
}
最佳答案
我有一个类似的问题,使用 [AnyHashable]
而不是 [Any]
类型是解决方案!
关于ios - 协议(protocol)类型 'Any' 的值不能符合 'Equatable' ;只有结构/枚举/类类型可以符合协议(protocol),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61562948/
我是一名优秀的程序员,十分优秀!