我的iOS项目一直面临以下问题(只是警告)。
'Hashable.hashValue'已作为协议要求弃用;通过实现'hash(into :)'来使类型'ActiveType'与'Hashable'相符
源代码:
public enum ActiveType {
case mention
case hashtag
case url
case custom(pattern: String)
var pattern: String {
switch self {
case .mention: return RegexParser.mentionPattern
case .hashtag: return RegexParser.hashtagPattern
case .url: return RegexParser.urlPattern
case .custom(let regex): return regex
}
}
}
extension ActiveType: Hashable, Equatable {
public var hashValue: Int {
switch self {
case .mention: return -1
case .hashtag: return -2
case .url: return -3
case .custom(let regex): return regex.hashValue
}
}
}
有更好的解决方案吗?警告本身建议我实施'hash(into :)',但我不知道怎么做。
参考:ActiveLabel
答案 0 :(得分:24)
如警告所述,现在您应该改为实现hash(into:)
函数。
func hash(into hasher: inout Hasher) {
switch self {
case .mention: hasher.combine(-1)
case .hashtag: hasher.combine(-2)
case .url: hasher.combine(-3)
case .custom(let regex): hasher.combine(regex) // assuming regex is a string, that already conforms to hashable
}
}
提示:您不需要使枚举明确符合Equatable
,因为Hashable
对其进行了扩展。