I've a tableViewController
that presents a list of places sorted by name!
This list is retrieved from my MySQL database using the query
SELECT Name FROM Places ORDER BY Name.
But my goal is to sort them by location according to userLocation
.
So, Any Place in the database has the fields "latitude" and "longitude". How do I order them by latitude and longitude based on the userLocation?
SELECT Name FROM Places ORDER BY ???.
Clearly latitude and longitude of each places are already inserted into the db. I give the user location as a parameter in the string (and I already have saved in a plist):
[NSString stringWithFormat: @ "SELECT Name FROM ORDER BY Places% @,% @", _myLatitude, _myLongitude "];
Please help me!
First, I suggest you to use a DTO. Something like this:
Then use a DAO to get all the places in an
NSArray
like Anna Karenina suggest you.Finally you can sort with that:
1. Create a Category of CLLocation to calculate what coord is nearest to a reference coord.
2. Add a compare method to your Place DAO.
3. Finally sort the array like this.
Don't forget add include the category.