I have an array of CLLocation
object. I would like to order this array with the distance to the user current location.
I know that I can calculate the distance between the user's location and each CLLocation
object and then order it with this distance. Is there any other solution which doesn't need calculations? Thanks.