Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

RonC

macrumors regular
Original poster
Oct 18, 2007
108
0
Chicago-area
(More CoreData-related stuff from Ron C)

I have a table in which I store, among other data, a location (as in lat/long). Consider this as a simplified version of that table:

Entity: City
Attributes:
  • cityName: String
  • location: Transformable (CLLocation)

I generated the class and now I want to sort these cities by their distance from me. My location is stored as a CLLocation, and I know how to compute the distance between CLLocations (loc1 distanceFromLocation: loc2). What I'd like to do is use this computed value for sorting the results in the fetched results controller, but I don't have the foggiest idea of how to write the predicates to make this happen.

Any thoughts?

UPDATE: Apparently this isn't really possible WITHOUT a) storing distance somehow (in an associated array or an attribute) OR trolling through the data and updating the stored distance. I'm not opposed to it, as the number of records is likely to be small (<100), but it leaves me feeling a little "icky" like there should be a better way...
 
Last edited:
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.