I have an array with values. How can I save this to Core Data in then easiest way? I know it has to do with ManagedObjectContexts and I already have Core Data added as a framework and set up the Entity. I tried following tutorial for this but I found it hard to generalize to my case.
Also, I have this:
var coordinates: [NSManagedObject] = []
but I want to save this:
var markersArray: Array<CLLocationCoordinate2D> = []
I believe that is not possible as that is not an NSManagedObject? How could I achieve that?