I am developing an app in which user can search for a point of interests, pick a search result and then the MKMapView will be centered to the result coordinate.
My question is how to make autocompletion happen? I have did research on MKLocalSearch
and MKLocalSearchRequest
, and it seems that is Apple suggested API for location search on iOS6.1+. However I cannot find any examples with autocompletion or suggestions with MKLocalSearch
and MKLocalSearchRequest
. Is it possible to autocomplete a location search or display a list of suggestions just like Apple's Maps app? Thanks!