Last active
November 20, 2022 19:10
-
-
Save briannadoubt/ed696825fba252a8c9073c14122ccc9b to your computer and use it in GitHub Desktop.
Core Data Fetch Request Wrapper View
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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