Make a MKAnnotation placemark always visible
I want the placemark (title and subtitle) of a MKAnnotation object to be visible on the mapview at anytime without开发者_StackOverflow clicking on it.
You can use this in you map ViewController
(void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[myMapView selectAnnotation:myAnnotation animated:YES];
}
精彩评论