No , there is no MapKit method to implement this type of property.
To do this, you need to implement your own code, i.e. Use the UISearchbarCantroller or Simple UISearchbar.
You can use Google Place AutoFill in the search results.
You can use this GooglePlacesAutocomplete Example .
On iOS> = 6.1 provides MKLocalSearch , MKLocalSearchRequest for searching natural language attractions. Example
MKLocalSearchRequest *request = [[MKLocalSearchRequest alloc] init]; request.region = regionToSearchIn; request.naturalLanguageQuery = @"restaurants";
source share