I'm noob with Core Data and I can't find the help I need on the Apple developer website.
I defined a fetch request in my .xcdatamodeld
file but now I can't find how to use it?
This is the definition of the fetch request :
I supose that the fetch request starts with :
let fetch = NSFetchRequest<NSFetchRequestResult>(entityName: "Category")
But I don't know how to use a fetch request by name. (The project is written in Swift 3)
Bharath's answer is for how to create and execute a fetch request in code. This is commonly how you'll do it. However, it's not actually the answer to your question. If you actually create a fetch request named "allCategories" in the core data model like that, this is how you use it:
let fetchRequest = self.managedObjectModel.fetchRequestTemplate(forName: "allCategories")
let fetchedObjects = self.managedObjectContext.execute(fetchRequest!)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With