Я пытаюсь показать отфильтрованный List
, который содержит только subjects
, которые точно соответствуют self.day[index]
. Однако, когда я пытаюсь использовать для этого предложение if
, я получаю ошибку Unable to infer complex closure return type; add explicit type to disambiguate
. Может кто-нибудь найти какой-нибудь другой способ фильтрации subject
по subject.day
, чтобы быть равным self.days[index]
, пожалуйста? Вот мой код, спасибо:
import SwiftUI
import CoreData
struct ProfileView: View {
@Environment(\.managedObjectContext) var moc: NSManagedObjectContext
@FetchRequest(
entity: Subject.entity(),
sortDescriptors:[
//NSSortDescriptor(keyPath: \Subject.day, ascending: true),
NSSortDescriptor(keyPath: \Subject.start, ascending: true)
]
) var subjects: FetchedResults<Subject>
@State private var showAddScreen = false
@State private var name: String = ""
@State private var surname: String = ""
let days = ["Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok"]
var body: some View {
Form {
ForEach(0 ..< days.count) { index in
Section {
Text(self.days[index])
List {
ForEach(self.subjects, id: \.self) { subject in //here the { shows an error, If I remove the if clause, it works, but obviously I don't have subjects filltered, which is what I need
if subject.day == self.days[index] {
SubjectCell(name: "\(subject.name!)",
place: "\(subject.place!)",
start: self.formatTime(date: subject.start ?? Date()),
end: self.formatTime(date: subject.end ?? Date()),
type: subject.type,
occurance: subject.occurance)
}
}
.onDelete(perform: self.deleteSubject)