У меня есть это представление:
import SwiftUI
struct SectionView1: View {
let dateStr:String
@Binding var isSectionView:Bool
var body: some View {
HStack {
Button(action: {
self.isSectionView.toggle()
}) {
Image(systemName: isSectionView ? "chevron.down.circle" : "chevron.right.circle")
}
Text("Media del \(dateStr)")
}
}
}
, которое будет вызываться из вида:
import SwiftUI
import Photos
struct MediaView: View {
let geoFolder:GeoFolderCD
@State private var assetsForDate = [String :[PHAsset]]()
@State private var isSectionViewArray:[String:Bool] = [:]
var body: some View {
List {
ForEach(assetsForDate.keys.sorted(by: > ), id: \.self) { dateStr in
Section {
SectionView1(dateStr: dateStr,
isSectionView: self.$isSectionViewArray[dateStr, default: true])
}
}
}
.onAppear {
self.assetsForDate = FetchMediaUtility().fetchGeoFolderAssetsForDate(geoFolder: geoFolderStruct, numAssets: numMediaToFetch)
for dateStr in self.assetsForDate.keys.sorted() {
self.isSectionViewArray[dateStr] = true
}
}
}
}
, но у меня есть ошибка: Subscript index of type '() -> Bool' in a key path must be Hashable
in isSectionView: self.$isSectionViewArray[dateStr, default: true]
Почему isSectionViewArray:[String:Bool] = [:]
не имеет Hasbable?
Как изменить код для работы?
Если удалить, в SectionView
, @Binding var isSectionView:Bool
код работает нормально, или если Я установил, с SectionView
, @Binding var isSectionViewArray:[String:Bool] = [:]
, код работает нормально.