Upvote:2

CLLocationCoordinate2D annotationCoord;
annotationCoord.latitude = someLocation;
annotationCoord.longitude = someLocation;
MKPointAnnotation *annotationPoint = [[MKPointAnnotation alloc] init];
annotationPoint.coordinate = annotationCoord;
annotationPoint.title = @"YourTitle";
annotationPoint.subtitle = @"YourSubtitle";
[map addAnnotation:annotationPoint];

More Answer related to the Same Query

Upvote:1

1) Annotation is not visible on mapView.
2) Annotation is not yet created/added to mapView.

Credit Goes to: stackoverflow.com

Related question with same questions but different answers