how to access via callout bubble on a descriptive map in a tableView

0

I'm a student and I'm developing an IOS app where the user is given a map with some pinned locations where the name of the location appears in the callout. (via a JSON file) Through a tabBar you can access a tableView where all the places are listed and touching one, it moves to another view where the full descriptive of that location is made available. My question is: how to access directly from a callout bubble chosen on the map to the respective descriptive in another view?

    
asked by anonymous 28.05.2014 / 21:17

1 answer

1
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

}

Take a look at this method, I think that's it, if you do not post the code to look at.

    
23.07.2014 / 20:44