iphone - Need help opening callout of annotation on map automatically, when map first loads -
dear fellow iphone/objective-c developers: i have navigation based application iphone working allows user view selection table, on map. have annotation pinpoints user's selected location on map. per normal behaviour, if user clicks on annotation, callout appears details location. no problems here. question is, i'd callout appear automatically annotation, once user taken screen containing map, user not have click on annotation in order see details location, i'm not sure how this. have following method in "mapviewcontroller" class, bulk of map display work performed: - (void)viewdidload { [super viewdidload]; mkcoordinateregion region; mkcoordinatespan span; navbuttonappdelegate *delegate = [[uiapplication sharedapplication] delegate]; usercoord = delegate.userlocation.coordinate; region.center = usercoord; span.latitudedelta = 0.4; span.longitudedelta = 0.4; region.span = span; [mapview setmaptype:mkmaptypestandard]; [mapview setzoomenabled:yes...