tags:

views:

137

answers:

1

Hello.

I'm developing an iPhone application and I want to know the location on a MkMapView where the user has touch.

I have a MKMapView that fills the screen. When the user touch over the map, I need to know the location of the point the user has touched. Is that possible?

Thank you.

+1  A: 

Check out the instance method convertPoint:toCoordinate.

http://developer.apple.com/iphone/library/documentation/MapKit/Reference/MKMapView_Class/MKMapView/MKMapView.html

Krumelur
It seems to be what I'm looking for. I'm going to try it and I'll tell you.
VansFannel