[Solved] Open Map Annotation from Selected Row in Table View
When you select a row in the tableView, your method tableView:didSelectRowAtIndexPath: is called. So you have to use there the indexPath to read the data from your model, and get the title. You could then read all annotations from your mapView, using its annotations property. In the array that you get, scan the objects until … Read more