I was wondering what approach is recommended for storing an array of CLLocation objects (forming a route or path) in a Core Data database? Is serialization a good approach or would you recommend to store the CLLocation objects in a separate model that has relationship to a "route" model?
The problem with serializing the array of locations is that you don't have easy access to the individual locations. On the other hand, storing each location of the route/path as a separate entry in the database seems to result in a large database and might result in slow performance.
I'm curious to hear your suggestions.
Bart