I'm trying to make an iPhone app which requires users to be able to long press on a place on a map view to drop a pin there. Does anybody know how this is done?
The behaviour is observable in apple maps when you long press on the screen. It will drop a pin and present an annotation saying "dropped pin"
1) Instantiate a
UILongPressGestureRecognizer
and add it to theMKMapView
.2) When the selector gets called after the user has a long press, call the addAnnotation method in
MKMapView
with the appropriate title and coordinate.3) Then make sure you conform to the
MKMapViewDelegate
and implementviewForAnnotation:
which will be called right after you add the annotation and return aMKPinAnnotationView