for(int i=0;i<[btv_view.aray_cord count];i++)
{
    //dm.title=[appDelegate.lB objectAtIndex:i ];

    [mapView addAnnotation:[btv_view.aray_cord objectAtIndex:i]]; 

}

I have use above code for adding multiple pin annotation on map. Now i want add tiltle on each pin annotation. How do that?

link|improve this question

65% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Try this:

for (MKPlacemark* annotations in mapView.annotations) {
    annotations.title = @"your title";
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.