i have a table in coredata with some fields, i can get the count of records but i can´t get the values from each field, now i have this code: var request:NSFetchRequest = NSFetchRequest(entityName: Radar) //my table in coredata let appDelegate:AppDelegate = (UIApplication.sharedApplication().delegate as! AppDelegate) let context:NSManagedObjectContext = appDelegate.managedObjectContext! request.returnsObjectsAsFaults = false var results:NSArray = context.executeFetchRequest(request, error: nil)! println(results.count) //this is the count that i can doi need some more,Radar have this fields: Descr,Latit,Longi need get this fields to create a annotationsome like this: results.Descr 😝thks in advance
1
0
342