Próbuję nauczyć się podstawowych danych, tworząc aplikację do zarządzania pracą domową. Mój kod działa poprawnie, a aplikacja działa poprawnie, dopóki nie spróbuję dodać nowego zadania do listy. Mam ten błąd Thread 1: EXC_BREAKPOINT (code=1, subcode=0x1c25719e8)
na następującej linii: ForEach(courses, id: \.self) { course in
. Konsola posiada również ten błąd: Context in environment is not connected to a persistent store coordinator: <NSManagedObjectContext: 0x2823cb3a0>
.
Bardzo mało wiem o podstawowych danych i nie wiem, co to może być problem. Skonfigurowałem encje „Przypisanie” i „Kurs” w modelu danych, w którym kurs ma relację jeden-do-wielu z przydziałem. Każde zadanie zostanie skategoryzowane według określonego kursu.
To jest kod widoku, który dodaje nowe przypisanie do listy:
struct NewAssignmentView: View {
@Environment(\.presentationMode) var presentationMode
@Environment(\.managedObjectContext) var moc
@FetchRequest(entity: Course.entity(), sortDescriptors: []) var courses: FetchedResults<Course>
@State var name = ""
@State var hasDueDate = false
@State var dueDate = Date()
@State var course = Course()
var body: some View {
NavigationView {
Form {
TextField("Assignment Name", text: $name)
Section {
Picker("Course", selection: $course) {
ForEach(courses, id: \.self) { course in
Text("\(course.name ?? "")").foregroundColor(course.color)
}
}
}
Section {
Toggle(isOn: $hasDueDate.animation()) {
Text("Due Date")
}
if hasDueDate {
DatePicker(selection: $dueDate, displayedComponents: .date, label: { Text("Set Date:") })
}
}
}
.navigationBarTitle("New Assignment", displayMode: .inline)
.navigationBarItems(leading: Button(action: {
self.presentationMode.wrappedValue.dismiss()
}, label: { Text("Cancel") }),
trailing: Button(action: {
let newAssignment = Assignment(context: self.moc)
newAssignment.name = self.name
newAssignment.hasDueDate = self.hasDueDate
newAssignment.dueDate = self.dueDate
newAssignment.statusString = Status.incomplete.rawValue
newAssignment.course = self.course
self.presentationMode.wrappedValue.dismiss()
}, label: { Text("Add").bold() }))
}
}
}
EDYCJA: Oto kod w AppDelegate, który konfiguruje trwały kontener:
lazy var persistentContainer: NSPersistentCloudKitContainer = {
let container = NSPersistentCloudKitContainer(name: "test")
container.loadPersistentStores(completionHandler: { (storeDescription, error) in
if let error = error as NSError? {
fatalError("Unresolved error \(error), \(error.userInfo)")
}
})
return container
}()
A kod w SceneDelegate, który konfiguruje środowisko:
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
// Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`.
// If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
// This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).
// Get the managed object context from the shared persistent container.
let context = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext
// Create the SwiftUI view and set the context as the value for the managedObjectContext environment keyPath.
// Add `@Environment(\.managedObjectContext)` in the views that will need the context.
let contentView = ContentView().environment(\.managedObjectContext, context)
// Use a UIHostingController as window root view controller.
if let windowScene = scene as? UIWindowScene {
let window = UIWindow(windowScene: windowScene)
window.rootViewController = UIHostingController(rootView: contentView)
self.window = window
window.makeKeyAndVisible()
}
}
.environment(\.managedObjectContext, viewContext)
Odpowiedzi:
W rzeczywistości nie zapisujesz kontekstu. Powinieneś wykonać następujące czynności:
Również twój
@FetchRequest(...)
może wyglądać tak:Możesz zmodyfikować swoją
CourseItem
klasę, aby obsługiwałasortDescriptors
następujące elementy:Następnie zmodyfikujesz swoje
ForEach(...)
w następujący sposób, a także całkiem łatwo poradzisz sobie z usuwaniem elementów:Jedną rzeczą, którą chcesz upewnić się, jest to, że „Nazwa klasy” jest ustawiona na „CourseItem”, co odpowiada
CourseItem
klasie, którą wcześniej utworzyliśmy.Po prostu kliknij ENTITIES w swoim
.xcdatamodeId
pliku i ustaw wszystko w następujący sposób (w tym Moduł na „Aktualny moduł produktu” i Codegen na „Ręcznie / Brak”):źródło