Skip to content

Instantly share code, notes, and snippets.

@briannadoubt
Last active November 20, 2022 19:10
Show Gist options
  • Save briannadoubt/ed696825fba252a8c9073c14122ccc9b to your computer and use it in GitHub Desktop.
Save briannadoubt/ed696825fba252a8c9073c14122ccc9b to your computer and use it in GitHub Desktop.
Core Data Fetch Request Wrapper View
import SwiftUI
struct ContentView: View {
var body: some View {
CoreDataFetchRequestWrapper(Relationship.self) { relationships in
ForEach(relationships, id: \.self) { relationship in
Text(relationship.id?.uuidString ?? "Rawr")
}
}
}
}
import CoreData
import SwiftUI
struct CoreDataFetchRequestWrapper<Content: View, Object: NSManagedObject>: View {
@FetchRequest(entity: Object.entity(), sortDescriptors: []) var objects: FetchedResults<Object>
@ViewBuilder var content: (_ objects: FetchedResults<Object>) -> Content
init(_ type: Object.Type, @ViewBuilder content: @escaping (_ objects: FetchedResults<Object>) -> Content) {
self.content = content
}
var body: some View {
content(objects)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment