Я пытаюсь разработать приложение для ввода значений в сущности, которые отображаются в списке. Но когда я удаляю их из списка, они не удаляются в базе данных. У вас есть решение?
struct ViewList: View {
@Environment(\.managedObjectContext) var context
@State var newName: String = ""
@FetchRequest(
entity: ItProduct.entity(),
sortDescriptors: [NSSortDescriptor(keyPath: \ItProduct.name, ascending: true)]
) var list: FetchedResults<ItProduct>
var body: some View {
VStack {
HStack {
TextField("I insert the name of the list", text: $newName)
Button(action: {
if self.newName != "" {self.add()}
}) { Image(systemName: "plus")}
}
List {
ForEach(list, id: \.self) { i in
ViewItem(product: i)
}.onDelete { indexSet in
for index in indexSet {
self.context.delete(self.list[index])
}
}
}
}
}
}