I am trying to save CLLocation data in Core Data. My property is set as a Transformable object.
CLLocation
Some sample code out there indicates one can save the lo
What you are missing is that NSValue is for storing types, i.e., contiguous blocks of memory, not objects. CLLocation is an object.
In order to store a CLLocation in core data, you will have to store each of the properties. An alternative is to use a Coder.