I\'m using the following code to fetch all the data in \"category\".
let appDelegate = UIApplication.sharedApplication().delegate as AppDelegate let managedCon
You can use .filter on the fetchedResults.
To "filter" results in Core Data, use NSPredicate like so:
NSPredicate
let filter = "products" let predicate = NSPredicate(format: "type = %@", filter) fetchRequest.predicate = predicate