I’ve spent many hours trying to figure how to do this:

Having a placemark/annotation in the centerCoordinate of your mapView, when you scroll the map, the placemark should always stays in the center.
I’ve seen another app doing this too!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Found my question in How to add annotation on center of map view in iPhone?
There’s the answer :
If you want to use an actual annotation instead of just a regular view positioned above the center of the map view, you can:
MKPointAnnotationclass eg). This avoids having to remove and add the annotation when the center changes.regionDidChangeAnimateddelegate method (make sure map view’s delegate property is set)Example:
Now this will move the annotation but not smoothly. If you need the annotation to move more smoothly, you can add a
UIPanGestureRecognizerandUIPinchGestureRecognizerto the map view and also update the annotation in the gesture handler: