I got a question about the MKAnnotations. I want to add to my mapView annotations to draw them with the typical Pin. How can I do it? I've implemented the coordinate getter because coordinate is readonly, and I gave value to the coordinates in that method. If I add the annotations like this: [self.mapView addAnnotations:self.annotations]; Isn't it enough? Because in my mapView don't appear the pins, and I don't know if a have to call some method, or I have to call a setter for the coordinate (but i thought that the own mapView call the getter of the Annotation class giving that coordinate to each Annotation). My mapView.annotations has annotations but they dont appear in the map.
Thanks