I have a UISearchBar where the user types in a string (e.g. an address) and it should suggestion some addresses.
So let's say I am within Apple's Maps App, and I type in "New Yo" I'll get the city of New York + some local search results.
It seems like Apple's using a mixture between a MKLocalSearch and a forward geocoding.
Now If I search the docu, it clearly states that I must not use the CLGeoCoding for searching addresses but I should use the MKLocalSearch.
So what is the best approach here? MKLocalsearch is actually for finding spots within a near distance to the user or am I wrong?
By the way, I am using Swift :D Thanks