我不太清楚如何处理来自编译器的弃用警告,不要使用hashValue
而是实现hash(into:)
.
'Hashable.hashValue' 作为协议要求已被弃用;通过实现 'hash(into:)' 来使类型 'MenuItem' 符合 'Hashable'
来自Swift 的回答:“Hashable.hashValue”作为协议要求已被弃用;有这个例子:
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
}
}
我确实有这个结构,可以定制PagingItem
羊皮纸(https://github.com/rechsteiner/Parchment)。
import Foundation
/// The PagingItem for Menus.
struct MenuItem: PagingItem, Hashable, Comparable {
let index: Int
let title: String
let menus: Menus
var hashValue: Int {
return index.hashValue &+ title.hashValue
}
func hash(into hasher: inout Hasher) {
// Help here?
}
static func ==(lhs: MenuItem, rhs: MenuItem) -> Bool {
return lhs.index == rhs.index && lhs.title == rhs.title
}
static func <(lhs: MenuItem, rhs: MenuItem) -> Bool {
return lhs.index < rhs.index
}
}