Quote:
Originally Posted by lapse
Annotations were a cinch to set up. I had to add the annotations to the map on viewDidAppear to get the pin drop animations working:
Code:
- (void) viewDidAppear: (BOOL) animated
{
[self.mapView addAnnotations: _points];
}
|
I am able to create an annotation object but I can't make it display on the mapView. The docs say that a new annotationView will be created automatically but how do I link this to my annotation? ANy help much appreciated!