3

I want the placemark (title and subtitle) of a MKAnnotation object to be visible on the mapview at anytime without clicking on it.

Caleb
  • 124,013
  • 19
  • 183
  • 272
bobby grenier
  • 2,090
  • 2
  • 14
  • 11

1 Answers1

2

You can use this in you map ViewController

(void)viewWillAppear:(BOOL)animated
{
  [super viewWillAppear:animated];
  [myMapView selectAnnotation:myAnnotation animated:YES];
}
Fede Mika
  • 2,211
  • 2
  • 19
  • 18