So I understand the code in the link below for the most part. http://phpadvocate.com/blog/2013/01/ios-6-1-simple-example-using-mklocalsearch/
However, how do I get the address for the mapItem? Seems like the other properties include: placemark, isCurrentLocation, name, phoneNumber, and url.
actually i am also getting the data like pizza, bar..etc but i want to phone number, street view address
Your
MKLocalSearchResponse
item that is created by theMKLocalSearch
completion handler contains an arraymapItems
. You should iterate over this array containing allMKMapItem
objects.You can read out every property described in your question from every
thisMapItem
object.