I want the placemark (title and subtitle) of a MKAnnotation object to be visible on the mapview at anytime without clicking on it.
Asked
Active
Viewed 688 times
1 Answers
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