How do I drop a pin in center of the map?
Share
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.
You first need to create a class that implements the
MKAnnotationprotocol; this is effectively the “data” of the annotation (pin) and has little to do with the visual representation. You can then create an instance of this class, set its coordinate to the centre of the map, add it to yourMKMapView, and render it using anMKPinAnnotationViewinstance.